0

Suppose we have a data frame as so:

col_1
0 1
2 3
4 5

How do I separate the two numbers into two columns? i.e. to get:

col_1 col_2
0     1
2     3
4     5

Insight appreciated!

0 Answers0