You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest version (.18) of pandas, this statement from ch.5 doesn't seem to work: weather_mar2012 = pd.read_csv(url, skiprows=15, index_col='Date/Time', parse_dates=True, encoding='latin1', header=True)
The following worked for me: weather_mar2012 = pd.read_csv(url, index_col='Date/Time', parse_dates=True, encoding='latin1', header=14)
The text was updated successfully, but these errors were encountered:
In the latest version (.18) of pandas, this statement from ch.5 doesn't seem to work:
weather_mar2012 = pd.read_csv(url, skiprows=15, index_col='Date/Time', parse_dates=True, encoding='latin1', header=True)
The following worked for me:
weather_mar2012 = pd.read_csv(url, index_col='Date/Time', parse_dates=True, encoding='latin1', header=14)
The text was updated successfully, but these errors were encountered: