PythonDataScienceHandbook icon indicating copy to clipboard operation
PythonDataScienceHandbook copied to clipboard

Python Data Science Handbook: full text in Jupyter Notebooks

Results 145 PythonDataScienceHandbook issues
Sort by recently updated
recently updated
newest added

ImportError: cannot import name 'gaussianprocess' need change to 'from sklearn import gaussian_process'

hello sir I have couple of asc files in each file there is a some meteorological data (temperature,humidity) previous, I worked with netcdf ,grib data now my data extension is...

Dear Mr. Vanderplas, I have noted your book entitled as 'Python Data Science Handbook 2nd edition' was online. I am interested in when the jupter codes of this book are...

This allows notebook to run on scikit-learn 0.18+. The calling convention has changed since that release, with name `GaussianMixture` instead of old `GMM`. Parameter `covariances_` instead of `covars_`, `random_state` can...

pg 84 In[24: 'plot the results plt.plot(bins, counts, linestyle='steps');' This produces an error as lifestyle is incorrect. it should (or at least this works) be 'drawstyle="steps"': plt.plot(bins, counts, drawstyle="steps");

In 02.07, graphing the histogram using [plt.plot(bins, counts, linestyle='steps')] pops up an error. It says that 'steps' is not a valid value for linestyles.

Bumps [numpy](https://github.com/numpy/numpy) from 1.11.1 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

This change resolves #334, changing sciece to science

AttributeError: 'Rectangle' object has no property 'normed'. I removed normed=True from plt.hist(data[col], normed=True, alpha=0.5)

This line at 04.14-Visualization-With-Seaborn : > If we pass the full two-dimensional dataset to kdeplot, we will get a two-dimensional visualization of the data: > `sns.kdeplot(data)` Gives an error: >...