-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you faced error in loading data in Exercise 1 using colab #21
Comments
Thanks! It works for me too! |
Thank you kindly! Works for me. |
Thank you, but it keeps saying anw I found another alternative
|
Thanks a lot. It worked for me @Kha23i |
How did you know to do this? @Kha23i |
How did you find this @Kha23i broo |
@Kha23i Thank you. Seems worked for me. Needed to put a code in all 3 lines. Sorry, i am new to it. |
@Kha23i thanks a ton, similarly I tried pulling the file from local sales = pd.read_csv('C:/Users/xyz/Desktop/sales_data.csv', parse_dates= ['Date']) |
@Sarabdat Idk why but that didn't work for me... |
The original code
sales = pd.read_csv( 'data/sales_data.csv', parse_dates=['Date'])
may cause error for you
then you can replace it with
sales = pd.read_csv( 'https://raw.githubusercontent.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example/master/data/sales_data.csv', parse_dates=['Date'])
And it worked well for me 💯
The text was updated successfully, but these errors were encountered: