Grant Buttrey
Grant Buttrey

Reputation: 1

R reading in data issue

I am reading in this dataset as a csv and I'm not getting any errors but what I am getting is all of the data is being read in as NA when I use "sep = ';'. Anybody know why this might be? enter image description here

Upvotes: 0

Views: 54

Answers (1)

D. Anthropoid
D. Anthropoid

Reputation: 143

If your dataset is Comma Seperated Values [csv], shouldn't your sep parameter be = ","? What function are you using to read your data: read.csv or read.delim perhaps? Also, consider posting some example code next time (and preferably also a chunk of the raw data)

Upvotes: 2

Related Questions