I have some data in a txt file. Each entry is seperated by a space. The data is meant to be used in a 100x150 matrix. This means the first 100 numbers is the first column, the next 100 is the second column, etc. I would like to use pandas to read the data however i can't seem to get the shape right. I can load the data using pd.read_csv but it its a 1x15000 matrix not a 100x150. How can i read the data and reshape it such that it becomes a 100x150 matrix as described above.
Thanks in advance!