pandas-cookbook
pandas-cookbook copied to clipboard
Recipes for using Python's pandas library
In ch.5, for the `download_weather_month` function, the source url now provides the correct data even when you look for data for the month of January. So one no longer needs...
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 =...
fixed some issues with the Chapter 5 notebook, pandas 0.17.1, python 3.5.1
Chapter three talks about Out[26] as if it was calculated using integer division instead of float division.
Similar errors exist for plots in other chapters too. I found the solution to be here: http://stackoverflow.com/questions/33995707/attributeerror-unknown-property-color-cycle --- AttributeError Traceback (most recent call last) in () ----> 1 fixed_df['Berri 1'].plot()...
http://pandas.pydata.org/pandas-docs/stable/tutorials.html
I encountered an issue while trying to build the environment using MyBinder. The build fails at the step where pip install attempts to install the packages listed in requirements.txt. The...
This pull request resolves the little issue with the MyBinder build process failing due to version incompatibility with matplotlib. The changes include: 1. Updating the requirements.txt file to use matplotlib==3.4.3,...