I'm converting a list into a NumPy array:
a = np.array(l) # Where l is the list of data
return a
But whenever I go to print this array:
print (a)
I only get a slice of the array:
[-0.00750732 -0.00741577 -0.00778198 ..., 0.00222778 0.00219727 -0.00048828]
However, If I print the size, I get the actual size of the array: 61238
Could anyone have a guess to where I am going wrong?