When I print the array it looks like this
print(my_array)
[ 0 0 0 1 0 1...
1 0 2 0 1 ]
[ 0 0 0 1 0 1...
1 0 2 0 1 ]
none
When I index the array with a single index like
print(my_array[0])
it returns
0
0
none
but if I try, for example
print(my_array[0,0])
I get
"IndexError: too many indices for array"
Finally, the shape returns
(750,)
(750,)
None
and the type returns
class 'numpy.ndarray'
class 'numpy.ndarray'
None
This array was given to me as is for a homework assignment, so I don't know how it was made (Coursera Course). How can I split the three arrays? I can see that each 750 data points are repeats, and I just need one set of the 750 to use for the assignment.
objectdtype. Like a list is contains pointers to other arrays. It's not a 2d array (matrix) but rather more like a list of lists.