I'm new to R. I have a single column (yes, just one column) with 200 rows whose elements are strings separated by commas.
Actual data:
"A, B, C, D"
"1, 10, 13, 4"
"0, 1, 6, 1"
"9, 3, 3, 0"
...
And from this single column I want to produce de following data frame:
A B C D
1 10 13 4
0 1 6 1
9 3 3 0
...
Where "A", "B", "C", "D" are the column-headers for this data frame and the rows also split by comma to each of the created column respectively. How can I achieve this in R?