Hello, I have a data file with 4 values in same column. How to split each column in 4 labelled columns v1, v2,v3 and v4 with bash or R or python ?
example of my file :
Barcode "FD1133" "FD1138"
102 "-0.0570 0.0113 1.035 0.061" " -0.3631 0.0065 0.842 0.045"
104 "-0.0334 1.0000 0.013 0.813" "-0.0604 0.9639 0.052 0.764"
Thank you very much
melania 2282 : Please don't delete posts once they have received an answer or comments.
if you can handle headers, try
column -t
How does this help OP?
column
formats content for display, it does nothing to split or manipulate content in any way that awk can.