1190
1190

Reputation: 375

importing csv files to R

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. enter image description here

enter image description here

Upvotes: 2

Views: 117

Answers (1)

bartektartanus
bartektartanus

Reputation: 16080

read.csv splits data by , and your file has ;. Try read.csv2 instead.

Upvotes: 4

Related Questions