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)
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