I\'m trying to access each item in a numpy 2D array.
I\'m used to something like this in Python [[...], [...], [...]]
for row in data: for col in dat
If you want to access an item in a numpy 2D array features, you can use features[row_index, column_index]. If you wanted to iterate through a numpy array, you could just modify your script to
for row in data: for col in data: print(data[row, col])