Reputation: 11
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.
Upvotes: 0
Views: 86
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