I am trying to import a CSV file with R, and am having trouble.
The CSV entries look like
"Name 1" , "Name 2, Name 3, Name 4"
If I import straight to R, the data is read in like
Name 1 Name 2,Name 3,Name 4
but I would like it to look like
Name 1 Name 2
Name 1 Name 3
Name 1 Name 4
Is there a way to break up the second column during import so I can have two columns with only one name in each?
Thanks