Im trying to open a csv file as followed
My ipynb-file is in the following directory -> /data/filename.ipynb
where as my csv file is in the following directory -> /data/preprocessed/processed_data.csv
When i try to open the file with the following code:
df = pd.read_csv('/preprocessed/processed_data.csv')
I get an exception that the file doesn't exist. Somehow I think I didn't quite understand how the directories work. Please help, thanks.
try this-
df = pd.read_csv('preprocessed/processed_data.csv')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With