I am new to R, I am facing difficulties extracting data into new columns. My current data frame looks like this
Column1.Column2.Column3
10,22,32
52,2,5
51,29,6
And I wish to make it like this, in table format. How can i do it?
Column1 Column2 Column3
10 22 32
52 2 5
51 29 6