I'm studying the book "Python for Data Analysis (written by Wes McKinney)."
While working on CH10, I had a problem.
The code below is what I wrote in Google Colab.
!wget https://github.com/wesm/pydata-book/blob/2nd-edition/examples/stock_px_2.csv
close_px = pd.read_csv('stock_px_2.csv', parse_dates=True, index_col=0)
close_px.head()
Then I got this error.
ParserError: Error tokenizing data. C error: Expected 1 fields in line 107, saw 2
How can I fix this?
Thanks!
https://raw.githubusercontent.com/wesm/pydata-book/2nd-edition/examples/stock_px_2.csv