This repository contains the entire Python Data Science Handbook, in the form of (free!) Jupyter notebooks. https://jakevdp.github.io/PythonDataScienceHandbook/
 
Go to file
Jake VanderPlas d66231454e Add source material from second edition 2023-05-05 16:20:45 -07:00
notebooks Add source material from second edition 2023-05-05 16:20:45 -07:00
notebooks_v1 Add source material from second edition 2023-05-05 16:20:45 -07:00
notebooks_v2 Add source material from second edition 2023-05-05 16:20:45 -07:00
tools Make colab links part of nav 2018-08-28 14:10:31 -07:00
website Adjust website build to work with colab badges: 2018-08-28 14:11:16 -07:00
.gitignore add temporary files to gitignore 2016-11-30 14:46:11 -08:00
.gitmodules MAINT: fix gitmodules and add README 2017-08-15 09:14:58 -07:00
LICENSE-CODE add Preface notebook 2016-11-17 14:45:39 -08:00
LICENSE-TEXT fix license :) 2017-02-22 20:56:51 -08:00
README.md Typo in README 2018-08-28 13:13:35 -07:00
environment.yml env.yml 2018-08-30 16:05:36 +02:00
requirements.txt Remove basemap from requirements.txt 2017-06-01 10:25:29 -07:00

README.md

Python Data Science Handbook

Binder Colab

This repository contains the entire Python Data Science Handbook, in the form of (free!) Jupyter notebooks.

cover image
cover image

How to Use this Book

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, NumPy, Pandas, Matplotlib, Scikit-Learn, 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: its a fast-paced introduction to the Python language aimed at researchers and scientists.

See 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 (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, 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 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. Read more at the Open Source Initiative.

Text

The text content of the book is released under the CC-BY-NC-ND license. Read more at Creative Commons.