I find it difficult to read the csv file in the pandas data frame. I am a complete newbie to pandas and this is stopping me from developing. I read the documentation and searched for solutions, but I can not continue. I tried the following to no avail ...
import pandas as pd import numpy as np pd.read_csv('C:\Users\rcreedon\Desktop\TEST.csv') pd.read_csv("C:\Users\rcreedon\Desktop\TEST.csv")
and similar permutations with / without quotes.
It spills out a big composite error that ends in:
IOError: File C:\Users creedon\Desktop\TEST.csv does not exist
It seems strange that in error he skips "r" from "rcreedon". Does this cause problems?
Just for the sake of this, I also tried
pd.read_csv('C:\rcreedon\Desktop\TEST.csv')
Again, βrβ was skipped when an error was returned.
Sorry I'm such a block leader, but I'm afraid here ....
Any help appreciated.
source share