I am trying to read in a data file using np.genfromtxt. I've used this method for other input files which are larger, so I'm not sure why it isn't working now. My suspicion is that I'm running out of RAM, but even when closing other windows and minimizing what my computer is doing, it still won't finish the cell and define the array.
You can see that it tries to run the code normally, but will act like it's done, yet the input cell still has an asterisk as if it isn't completed.
The line is simply:
pddata = np.genfromtxt('/Users/nathan/Research/0_Personal/22_new/pddata.dat', delimiter=" ", dtype=(float,int,int,int,int,int,"|S10",float,float,float))
The cell after it has been run can be seen here.
I understand this issue is usually an infinite loop question, however I'm not sure how to fix the internal loop from numpy. I considered it may be a data type issue, although I'm fairly certain the defined datatypes are correct.