problems with reading a csv file into a pandas data frame
so I'm trying to get this csv file, that I exported from a phpmyadmin Database, into a pandas data frame, but when I run the code it turns all of my columns into a single column like this :
If you have any suggestions on how I could fix this problem I would be so grateful.
You must be logged in to post. Please login or register an account.
sep='delimiter' makes no sense.
the sep IS the delimiter (sep = separator, which is a synonym in this case for delimiter)....what splits the values? Is it a comma? a tab? ...etc? THAT is what the sep should be. If your file is truly a csv (comma separated values), then you should have sep=','
-Harrison 8 years ago
You must be logged in to post. Please login or register an account.