All Projects → jakevdp → Pythondatasciencehandbook

jakevdp / Pythondatasciencehandbook

Licence: other
The book was written and tested with Python 3.5, though other Python versions (including Python 2.7) should work in nearly all cases.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Pythondatasciencehandbook

Machine Learning Alpine
Alpine Container for Machine Learning
Stars: ✭ 30 (-99.91%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy, matplotlib
Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (-93.13%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy, matplotlib
Opendatawrangling
공공데이터 분석
Stars: ✭ 148 (-99.54%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib
Cheatsheets.pdf
📚 Various cheatsheets in PDF
Stars: ✭ 159 (-99.5%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (-98.81%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib
Machine Learning Projects
This repository consists of all my Machine Learning Projects.
Stars: ✭ 135 (-99.58%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib
Data Analysis
主要是爬虫与数据分析项目总结,外加建模与机器学习,模型的评估。
Stars: ✭ 142 (-99.56%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (-98.92%)
Mutual labels:  jupyter-notebook, scikit-learn, numpy, matplotlib
Credit Risk Modelling
Credit Risk analysis by using Python and ML
Stars: ✭ 91 (-99.72%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy
Kagglestruggle
Kaggle Struggle
Stars: ✭ 228 (-99.29%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, matplotlib
Deeplearning cv notes
📓 deepleaning and cv notes.
Stars: ✭ 223 (-99.3%)
Mutual labels:  jupyter-notebook, scikit-learn, numpy, matplotlib
Data Science Ipython Notebooks
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.
Stars: ✭ 22,048 (-31.09%)
Mutual labels:  pandas, scikit-learn, numpy, matplotlib
Data Science For Marketing Analytics
Achieve your marketing goals with the data analytics power of Python
Stars: ✭ 127 (-99.6%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib
Stock Market Analysis And Prediction
Stock Market Analysis and Prediction is the project on technical analysis, visualization and prediction using data provided by Google Finance.
Stars: ✭ 112 (-99.65%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib
Pymc Example Project
Example PyMC3 project for performing Bayesian data analysis using a probabilistic programming approach to machine learning.
Stars: ✭ 90 (-99.72%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy
Data Science Projects With Python
A Case Study Approach to Successful Data Science Projects Using Python, Pandas, and Scikit-Learn
Stars: ✭ 198 (-99.38%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy
introduction to ml with python
도서 "[개정판] 파이썬 라이브러리를 활용한 머신 러닝"의 주피터 노트북과 코드입니다.
Stars: ✭ 211 (-99.34%)
Mutual labels:  numpy, scikit-learn, pandas, matplotlib
Data Science Complete Tutorial
For extensive instructor led learning
Stars: ✭ 1,027 (-96.79%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, numpy
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (-99.82%)
Mutual labels:  jupyter-notebook, pandas, scikit-learn, matplotlib
Windrose
A Python Matplotlib, Numpy library to manage wind data, draw windrose (also known as a polar rose plot), draw probability density function and fit Weibull distribution
Stars: ✭ 208 (-99.35%)
Mutual labels:  jupyter-notebook, pandas, numpy, matplotlib

Python Data Science Handbook

Binder Colab

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

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: it's 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].