Last answered:

22 Mar 2020

Posted on:

21 Mar 2020

0

First regression in Python

Hi,
I saved the file 'Simple Linear Regression.csv' on my desktop. When i type "data=pd.read_csv('1.01.csv')". Its showing file not found error. Whats the mistake?

1 answers ( 0 marked as helpful)
Instructor
Posted on:

22 Mar 2020

0

Hi Ankita,
First, make sure that you are using the same name. If you have saved it as: ‘Simple Linear Regression.csv’, then you must call it in the method with the same name, e.g.

data=pd.read_csv('Simple Linear Regression.csv')

Best,

The 365 Team

Submit an answer