I have a numpy array called data
which has 8 columns and gets recursively manipulated in the rows so it has a variable number of rows each time it passes through the function I need to apply.
Inside that function I have the following line of code which should count the occurrences of each unique value that appears in the last column of the array, whatever number of rows my array has at that point:
labels, counts = np.unique(data[:,-1], return_counts=True)
This line of code returns an IndexError: too many indices for array
which I assume has to do with how I sliced the column, but I have no idea how to fix it. I have been googling and editing but nothing I tried seems to fix it. Help would be much appreciated. Thank you.
Is there any chance that you have a structured array with mixed dtypes? The only way I could generate that error using your indexing method with with one. For example