cherrypi / Science-Fair_2019

Vernal Pond graphing and data, as well as data analysis.
1 stars 0 forks source link

Mangled data frame - misquoted CSV #5

Closed VCF closed 5 years ago

VCF commented 5 years ago

Your data frame has columns thrown into inappropriate places, and is emitting the error "EOF within quoted string". I looked at the file and you're not properly closing your quotes in all places. Double check the file and make sure that for any value that you start a quote that you also end it (or any value ending with a quote is also starting with one).

cherrypi commented 5 years ago

I fixed the quotes in c0465de, but it still seemed broken when I checked it with str(), I can only think that maybe I'm using invalid characters or it doesn't agree with the fact that some columns have data in it that is sometimes only numbers and other times numbers and letters.

VCF commented 5 years ago

No, I think you've dealt with the immediate problem! I know what the next one is, I'll clue you in with the next issue.