Reputation: 61
I'm new to R so apologies if this is a basic question. Check the previously asked questions on here still having an issue. I'm trying to read a csv file and perform EDA. I haven't had trouble reading files before but am now getting error message "Parsed with column specification". Furthermore, when I try to create a boxplot (which also previously worked fine, receiving error "NAs introduced by coercion", however when I look at the file there are no missing data entries. I'm assuming these two errors are related, and trying to figure out how to resolve. Thanks for all of your help and patience with this newbie!
Upvotes: 2
Views: 13635
Reputation: 52308
I arrived here because tidyr::read_csv()
returned
Parsed with column specification:
This is not an error - the message simply lets you know any assumptions read_csv()
made when it read in your data. It's generally nothing to worry about.
You may want to check the classes of your columns to make sure they are what you expect them to be. You can do so with sapply(df, class)
Upvotes: 2