Screen Link:
https://app.dataquest.io/m/294/guided-project%3A-exploring-ebay-car-sales-data/1/introduction
My Code:
import pandas as pd
autos=pd.read_csv(“autos.csv”,“Latin-1”)
autos.info()
What I expected to happen:
Read the csv to autos without any warnings, and get a summary of 10+ columns using autos.info()
What actually happened:
Got the following errors on running autos=pd.read_csv("autos.csv","Latin-1")
/dataquest/system/env/python3/lib/python3.4/site-packages/ipykernel/main.py:2: ParserWarning: Falling back to the ‘python’ engine because the ‘c’ engine does not support regex separators (separators > 1 char and different from ‘\s+’ are interpreted as regex); you can avoid this warning by specifying engine=‘python’.
*** from ipykernel import kernelapp as app***
also after running autos.info()
the entire data is getting saved in a single column
Will appreciate if someone can help me with this.
Cheers…