Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://jakevdp.github.io/PythonDataScienceHandbook/
Python Data Science Handbook: full text in Jupyter Notebooks
https://jakevdp.github.io/PythonDataScienceHandbook/
jupyter-notebook matplotlib numpy pandas python scikit-learn
Last synced: 13 days ago
JSON representation
Python Data Science Handbook: full text in Jupyter Notebooks
- Host: GitHub
- URL: https://jakevdp.github.io/PythonDataScienceHandbook/
- Owner: jakevdp
- License: mit
- Created: 2016-08-10T14:24:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T02:48:00.000Z (7 months ago)
- Last Synced: 2024-05-23T02:42:47.134Z (6 months ago)
- Topics: jupyter-notebook, matplotlib, numpy, pandas, python, scikit-learn
- Language: Jupyter Notebook
- Homepage: http://jakevdp.github.io/PythonDataScienceHandbook
- Size: 41.6 MB
- Stars: 41,685
- Watchers: 1,779
- Forks: 17,612
- Open Issues: 218
-
Metadata Files:
- Readme: README.md
- License: LICENSE-CODE
Awesome Lists containing this project
- awesome-ai-tools - Python Data Science Handbook by Jake VanderPlas
- awesome-resources - Python - Data Science
- education - jakevdp/PythonDataScienceHandbook - Jake VanderPlas' Python Data Science Handbook (Misc / Design Tools)
- Data-Science - Python Data Science Handbook
- machine-learning-resources - Python Data Science Handbook
README
# Python Data Science Handbook
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/jakevdp/PythonDataScienceHandbook/master?filepath=notebooks%2FIndex.ipynb)
[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/Index.ipynb)This repository contains the entire [Python Data Science Handbook](http://shop.oreilly.com/product/0636920034919.do), in the form of (free!) Jupyter notebooks.
![cover image](notebooks/figures/PDSH-cover.png)
## How to Use this Book
- Read the book in its entirety online at https://jakevdp.github.io/PythonDataScienceHandbook/
- Run the code using the Jupyter notebooks available in this repository's [notebooks](notebooks) directory.
- Launch executable versions of these notebooks using [Google Colab](http://colab.research.google.com): [![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/Index.ipynb)
- Launch a live notebook server with these notebooks using [binder](https://beta.mybinder.org/): [![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/jakevdp/PythonDataScienceHandbook/master?filepath=notebooks%2FIndex.ipynb)
- Buy the printed book through [O'Reilly Media](http://shop.oreilly.com/product/0636920034919.do)
## About
The book was written and tested with Python 3.5, though other Python versions (including Python 2.7) should work in nearly all cases.
The book introduces the core libraries essential for working with data in Python: particularly [IPython](http://ipython.org), [NumPy](http://numpy.org), [Pandas](http://pandas.pydata.org), [Matplotlib](http://matplotlib.org), [Scikit-Learn](http://scikit-learn.org), and related packages.
Familiarity with Python as a language is assumed; if you need a quick introduction to the language itself, see the free companion project,
[A Whirlwind Tour of Python](https://github.com/jakevdp/WhirlwindTourOfPython): it's a fast-paced introduction to the Python language aimed at researchers and scientists.See [Index.ipynb](http://nbviewer.jupyter.org/github/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/Index.ipynb) for an index of the notebooks available to accompany the text.
## Software
The code in the book was tested with Python 3.5, though most (but not all) will also work correctly with Python 2.7 and other older Python versions.
The packages I used to run the code in the book are listed in [requirements.txt](requirements.txt) (Note that some of these exact version numbers may not be available on your platform: you may have to tweak them for your own use).
To install the requirements using [conda](http://conda.pydata.org), run the following at the command-line:```
$ conda install --file requirements.txt
```To create a stand-alone environment named ``PDSH`` with Python 3.5 and all the required package versions, run the following:
```
$ conda create -n PDSH python=3.5 --file requirements.txt
```You can read more about using conda environments in the [Managing Environments](http://conda.pydata.org/docs/using/envs.html) section of the conda documentation.
## License
### Code
The code in this repository, including all code samples in the notebooks listed above, is released under the [MIT license](LICENSE-CODE). Read more at the [Open Source Initiative](https://opensource.org/licenses/MIT).### Text
The text content of the book is released under the [CC-BY-NC-ND license](LICENSE-TEXT). Read more at [Creative Commons](https://creativecommons.org/licenses/by-nc-nd/3.0/us/legalcode).