So today, I started with time-series data using Python. First, I tried reading the time series data from a CSV file by using the panda library pd
Unfortunately, I keep getting this error? Any help on this would be highly appreciated.
PS: I am using Python 3.73
address = 'C:/Users/Anih John/Desktop/Python-workstation/ff/Superstore-Sales.csv'
Superstore = pd.read_csv(address, index_col='Order Date',parse_dates=True)
print(Superstore)
Then I get the following error:
Unable to open 'parsers.pyx': Unable to read file (Error: File not found (c:\users\anih john\desktop\python-workstation\ff\pandas\_libs\parsers.pyx)).