I have a date with 6 thousand lines and 1 row. Each one of these 6 thousand lines have 5 information, and it has space between them. I want to transform each one of these 5 information into 1 row (on pandas) So, It would be 6 thousand lines and 5 rows.
I have something like this:
Name B-V (mag) VMAG Plx(mas) logRpHK
HD10697 0.72000000000 3.706399082220 30.71 -5.01849947767
HD10697 0.70500040054 3.714691682840 30.70 -5.04175893038
HIP8159 0.72000000000 3.706399082220 30.71 -5.05434051352
HD83951 0.36000013351 2.507321229600 18.77 -4.45974790621
Pandas reads it as just one column, and I would like it to be 5 column. The Name column, the B-V(mag) column, the VMAG column, the Plx(mas) column and the logRphk column. So the first information in each line would be in the first column, the second in the second column... and so on. Hope you can understand what I mean. Sorry for anything, english is not my first language. Thx