Reputation: 1
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?
Upvotes: 0
Views: 54
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