Christine Wacta
Christine Wacta

Reputation: 11

New in Python. {using Spyder)

I am taking "DATA ANALYSIS AN INTERPRETATION. Never used Python. I am trying to follow the lecture Video and getting this error. I have connected to the folder that has my CSV file. Please help.

enter image description here

Upvotes: 0

Views: 86

Answers (1)

Sriram Sitharaman
Sriram Sitharaman

Reputation: 857

Check if the python script is in the same folder/directory as your csv file. Otherwise, add the directory path before the filename such as

data=pandas.read_csv("your_directory_path/filename.csv")

Upvotes: 1

Related Questions