Reputation: 375
I imported csv.file to software R. But, when listing the data in R, variable names and variable values are not separated. (Screenshot is posted ~ picture1) Also, when seeing the variable names, variables name is listed in one column as if it is one name. (picture2) There is a problem. I need to separate them. How to solve it? Thank you so much.
Upvotes: 2
Views: 117
Reputation: 16080
read.csv
splits data by ,
and your file has ;
. Try read.csv2
instead.
Upvotes: 4