I'm struggling with separating the data from the one and only row I have in a CSV file. While the file has multiple columns the information is on one row and therefore looks like this:
Column 1 | Column 2 | Column 3 ... |Column 628
Seconds | X1 | X2 |Seconds
I just want each 'Seconds' instance to be in the same column as well as each instance of X and Y, so I want the end product to look like this:
Column one Column 2 Column 3
Seconds x y
Seconds x y
Seconds x y
So far, I've tried using values.reshape to try and structure the data at least a bit but I couldn't find anything on how to extract specific values and put them into new columns. Any input is appreciated!