All Projects → AllenDowney → Elementsofdatascience

AllenDowney / Elementsofdatascience

Licence: mit
An introduction to data science in Python, for people with no programming experience.

Projects that are alternatives of or similar to Elementsofdatascience

Pytorch Vq Vae
PyTorch implementation of VQ-VAE by Aäron van den Oord et al.
Stars: ✭ 204 (-0.49%)
Mutual labels:  jupyter-notebook
Screenshot To Code
A neural network that transforms a design mock-up into a static website.
Stars: ✭ 13,561 (+6515.12%)
Mutual labels:  jupyter-notebook
Icychesszero
中国象棋alpha zero程序
Stars: ✭ 206 (+0.49%)
Mutual labels:  jupyter-notebook
Yolo Digit Detector
Implemented digit detector in natural scene using resnet50 and Yolo-v2. I used SVHN as the training set, and implemented it using tensorflow and keras.
Stars: ✭ 205 (+0%)
Mutual labels:  jupyter-notebook
Examples
Home for Elasticsearch examples available to everyone. It's a great way to get started.
Stars: ✭ 2,427 (+1083.9%)
Mutual labels:  jupyter-notebook
Lihang Code
《统计学习方法》的代码实现
Stars: ✭ 14,955 (+7195.12%)
Mutual labels:  jupyter-notebook
Unsupervisedscalablerepresentationlearningtimeseries
Unsupervised Scalable Representation Learning for Multivariate Time Series: Experiments
Stars: ✭ 205 (+0%)
Mutual labels:  jupyter-notebook
Scihub
Source code and data analyses for the Sci-Hub Coverage Study
Stars: ✭ 205 (+0%)
Mutual labels:  jupyter-notebook
Deoldify
A Deep Learning based project for colorizing and restoring old images (and video!)
Stars: ✭ 14,467 (+6957.07%)
Mutual labels:  jupyter-notebook
Pytorch How And When To Use Module Sequential Modulelist And Moduledict
Code for my medium article
Stars: ✭ 206 (+0.49%)
Mutual labels:  jupyter-notebook
Pytorch realtime multi Person pose estimation
Pytorch version of Realtime Multi-Person Pose Estimation project
Stars: ✭ 205 (+0%)
Mutual labels:  jupyter-notebook
Concretedropout
Code for Concrete Dropout as presented in https://arxiv.org/abs/1705.07832
Stars: ✭ 205 (+0%)
Mutual labels:  jupyter-notebook
Rl Tutorial Jnrr19
Stable-Baselines tutorial for Journées Nationales de la Recherche en Robotique 2019
Stars: ✭ 204 (-0.49%)
Mutual labels:  jupyter-notebook
Spacy Ru
Russian language models for spaCy
Stars: ✭ 205 (+0%)
Mutual labels:  jupyter-notebook
Doc Han Att
Hierarchical Attention Networks for Chinese Sentiment Classification
Stars: ✭ 206 (+0.49%)
Mutual labels:  jupyter-notebook
Multihopkg
Multi-hop knowledge graph reasoning learned via policy gradient with reward shaping and action dropout
Stars: ✭ 202 (-1.46%)
Mutual labels:  jupyter-notebook
Learnopencv
Learn OpenCV : C++ and Python Examples
Stars: ✭ 15,385 (+7404.88%)
Mutual labels:  jupyter-notebook
Blazeface Pytorch
The BlazeFace face detector model implemented in PyTorch
Stars: ✭ 203 (-0.98%)
Mutual labels:  jupyter-notebook
Instancesegmentation sentinel2
🌱 Deep Learning for Instance Segmentation of Agricultural Fields - Master thesis
Stars: ✭ 206 (+0.49%)
Mutual labels:  jupyter-notebook
Mlapp cn code
《Machine Learning: A Probabilistic Perspective》(Kevin P. Murphy)中文翻译和书中算法的Python实现。
Stars: ✭ 204 (-0.49%)
Mutual labels:  jupyter-notebook

Elements of Data Science is an introduction to data science in Python for people with no programming experience. My goal is to present a small, powerful subset of Python that allows you to do real work in data science as quickly as possible.

At the same time, I want to make sure the material is presented clearly. I don't assume that the reader knows anything about programming, statistics, or data science. When I use a term, I try to define it immediately, and when I use a programming feature, I try to explain it.

There are a few places where I use a programming feature before it is fully explained, but I keep them to a minimum, and I'll let you know what you don't need to know.

This "book" is in the form of Jupyter notebooks. Jupyter is a software development tool you can run in a web browser, so you don't have to install any software. A Jupyter notebook is a document that contains text, Python code, and results. So you can read it like a book, but you can also modify the code, run it, develop new programs, and test them.

The notebooks contains exercises where you can practice what you learn. Most of the exercises are meant to be quick, but a few are more substantial.

This material is a work in progress, so suggestions are welcome. The best way to provide feedback is to click here and create an issue in this GitHub repository.

The notebooks

For each of the notebooks below, you have two options: if you view the notebook on NBViewer, you can read it, but you can't run the code. If you run the notebook on Colab, you'll be able to run the code, do the exercises, and save your modified version of the notebook in a Google Drive (if you have one).

Notebook 1

Variables and values: The first notebook explains how to use Jupyter and introduces the most basic programming features in Python, variables and values.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 2

Times and places: This notebook shows how to represent times, dates, and locations in Python, and uses the GeoPandas library to plot points on a map.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 3

Lists and Arrays: This notebook presents lists and NumPy arrays. It discusses absolute, relative, and percent errors, and ways to summarize them.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 4

Loops and Files: This notebook presents the for loop and the if statement; then it uses them to speed-read War and Peace and count the words.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 5

Dictionaries: This notebook presents one of the most powerful features of Python, dictionaries, and uses them to count the unique words in War and Peace.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 6

Plotting: This notebook introduces Matplotlib, a plotting library for Python, and uses it to generate a few common data visualizations and one less common one, a Zipf plot.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 7

DataFrames: This notebook presents DataFrames, which are used to represent tables of data. And it uses data from the National Survey of Family Growth to find the average weight of babies in the U.S.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 8

Distributions: This notebook explains what a distribution is and presents 3 ways to represent a distribution: a PMF, CDF, or PDF. It also shows how to compare a distribution to another distribution or a mathematical model.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 9

Relationships: This notebook explores relationships between variables using scatter plots, violin plots, and box plots. It quantifies the strength of a relationship using the correlation coefficient and uses simple regression to estimate the slope of a line.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 10

Regression: This notebook presents multiple regression and uses it to explore the relationship between age, eduction, and income. It uses visualization to interpret multivariate models. It also presents binary variables and logistic regression.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

Notebook 11

Inference: This notebook presents computational inference, a process for computing p-values, standard errors, and confidence intervals using randomization methods rather than analysis.

Press this button to run this notebook on Colab:

or click here to read it on NBViewer

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