All Projects → wangyingsm → Python Data Science Handbook

wangyingsm / Python Data Science Handbook

Licence: other
A Chinese translation of Jake Vanderplas' "Python Data Science Handbook". 《Python数据科学手册》在线Jupyter notebook中文翻译

Programming Languages

python3
1442 projects

Projects that are alternatives of or similar to Python Data Science Handbook

H2o Tutorials
Tutorials and training material for the H2O Machine Learning Platform
Stars: ✭ 1,305 (+1179.41%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Har Keras Coreml
Human Activity Recognition (HAR) with Keras and CoreML
Stars: ✭ 23 (-77.45%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Code search
Code For Medium Article: "How To Create Natural Language Semantic Search for Arbitrary Objects With Deep Learning"
Stars: ✭ 436 (+327.45%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Open source demos
A collection of demos showcasing automated feature engineering and machine learning in diverse use cases
Stars: ✭ 391 (+283.33%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Data Privacy For Data Scientists
A workshop on data privacy methods for data scientists.
Stars: ✭ 53 (-48.04%)
Mutual labels:  jupyter-notebook, data-science, tutorial
User Machine Learning Tutorial
useR! 2016 Tutorial: Machine Learning Algorithmic Deep Dive http://user2016.org/tutorials/10.html
Stars: ✭ 393 (+285.29%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Intro To Python
An intro to Python & programming for wanna-be data scientists
Stars: ✭ 536 (+425.49%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Functional intro to python
[tutorial]A functional, Data Science focused introduction to Python
Stars: ✭ 228 (+123.53%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Computervision Recipes
Best Practices, code samples, and documentation for Computer Vision.
Stars: ✭ 8,214 (+7952.94%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Awesome Google Colab
Google Colaboratory Notebooks and Repositories (by @firmai)
Stars: ✭ 863 (+746.08%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (+238.24%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Learning python
Source material for Python Like You Mean it
Stars: ✭ 78 (-23.53%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+3090.2%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Pycon 2019 Tutorial
Data Science Best Practices with pandas
Stars: ✭ 410 (+301.96%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (+172.55%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Data Science Your Way
Ways of doing Data Science Engineering and Machine Learning in R and Python
Stars: ✭ 530 (+419.61%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Sc17
SuperComputing 2017 Deep Learning Tutorial
Stars: ✭ 211 (+106.86%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Tutorials
AI-related tutorials. Access any of them for free → https://towardsai.net/editorial
Stars: ✭ 204 (+100%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Python Introducing Pandas
Introduction to pandas Treehouse course
Stars: ✭ 24 (-76.47%)
Mutual labels:  jupyter-notebook, data-science, tutorial
Allstate capstone
Allstate Kaggle Competition ML Capstone Project
Stars: ✭ 72 (-29.41%)
Mutual labels:  jupyter-notebook, data-science, tutorial

Python Data Science Handbook

Python数据科学手册

Binder Colab

在线Binder 谷歌Colab

本书Github免费notebook格式中文翻译目录

下载中文版PDF可打印格式

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

本代码仓库包含着整本Python Data Science Handbook书籍,使用免费的Jupyter notebook格式呈现。

译者注:作者英文版原仓库地址

cover image

How to Use this Book

如何阅读本书

  • Run the code using the Jupyter notebooks available in this repository's notebooks directory.
  • Launch executable versions of these notebooks using Google Colab: Colab
  • Launch a live notebook server with these notebooks using binder: Binder

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.

本书在Python 3.5环境中编写和测试,但其他的Python版本(包括Python 2.7)也应该可以通过绝大部分示例。

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.

本书介绍了在Python中操作数据的核心库:特别包括 IPython, NumPy, Pandas, Matplotlib, Scikit-Learn 和其他相关的包。预设前提是读者已经熟悉Python语言;如果你需要语言本身的一个快速入门介绍,可以去参考兄弟项目,A Whirlwind Tour of Python: 这是一个面向研究人员和科学家的快速Python语言入门介绍。

译者注:Python旋风之旅中文翻译已经全部完成。

See Index.ipynb for an index of the notebooks available to accompany the text.

可以参见目录查看所有notebooks的列表。

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.

本书的代码在Python 3.5环境中测试通过,但绝大部分情况下,代码都能在Python 2.7和其他更早的版本下正常使用。

译者注:Python2将于2020年1月停止维护,因此强烈不建议继续使用Python2。

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

运行本书的代码需要用到的第三方包列在 requirements.txt 文件中(请注意,部分确定版本的包可能并不适用于你的系统:你可能需要根据需要调整它们)。要使用 conda 安装需要的依赖包,可以执行下面的命令:

$ 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

如果需要创建一个独立的Python环境,例如叫PDSH,使用Python 3.5环境和安装所需的第三方包,执行下面的命令:

$ 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.

可以参见conda文档的管理Python环境章节了解更多的内容。

License

协议

Code

代码

不翻译了,MIT license

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

文字

不翻译了,CC-BY-NC-ND license

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].