Jupyter can't find unzipped file
in
The Complete Data Visualization Course with Python, R, Tableau, and Excel
/
Bar Chart - Python - How to Create a Bar Chart
Hello,
I have unzipped the file for the above lecture and Jupyter still can't find it. Here is a copy of my code:
df_used_cars = pd.read_csv("C:/Users/drewj/Downloads/bar_chart_data.zip")
The path in parenthesis is the exact file location given to me when I unzipped the file. Any thoughts on what to do?
1 answers ( 0 marked as helpful)
Hi Philip,
thanks for reaching out! It seems that you've entered the wrong extension when reading the file. You ought to write
df_used_cars = pd.read_csv("C:/Users/drewj/Downloads/bar_chart_data.csv")
with .csv at the end, instead of .zip.
Let me know if this works out!
Best,
365 Eli