All Projects → gedeck → Practical Statistics For Data Scientists

gedeck / Practical Statistics For Data Scientists

Licence: gpl-3.0
Code repository for O'Reilly book

Projects that are alternatives of or similar to Practical Statistics For Data Scientists

Thinkcomplexity2
Book and code for Think Complexity, 2nd edition
Stars: ✭ 471 (-0.84%)
Mutual labels:  jupyter-notebook
Docs
TensorFlow documentation
Stars: ✭ 4,999 (+952.42%)
Mutual labels:  jupyter-notebook
Bayesian Analysis Recipes
A collection of Bayesian data analysis recipes using PyMC3
Stars: ✭ 479 (+0.84%)
Mutual labels:  jupyter-notebook
Wfdb Python
Native Python WFDB package
Stars: ✭ 471 (-0.84%)
Mutual labels:  jupyter-notebook
Jupytext
Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts
Stars: ✭ 4,969 (+946.11%)
Mutual labels:  jupyter-notebook
Tracking My Phone
🕵️‍♀️ 监视我的手机:数据都去哪儿了?
Stars: ✭ 476 (+0.21%)
Mutual labels:  jupyter-notebook
Dp100
Labs for Course DP-100: Designing and Implementing Data Science Solutions on Microsoft Azure
Stars: ✭ 470 (-1.05%)
Mutual labels:  jupyter-notebook
Jupyterhub Deploy Docker
Reference deployment of JupyterHub with docker
Stars: ✭ 479 (+0.84%)
Mutual labels:  jupyter-notebook
Introtodeeplearning
Lab Materials for MIT 6.S191: Introduction to Deep Learning
Stars: ✭ 4,955 (+943.16%)
Mutual labels:  jupyter-notebook
Nothotdog Classifier
What would you say if I told you there is a app on the market that tell you if you have a hotdog or not a hotdog.
Stars: ✭ 479 (+0.84%)
Mutual labels:  jupyter-notebook
Deeplearning.ai Natural Language Processing Specialization
This repository contains my full work and notes on Coursera's NLP Specialization (Natural Language Processing) taught by the instructor Younes Bensouda Mourri and Łukasz Kaiser offered by deeplearning.ai
Stars: ✭ 473 (-0.42%)
Mutual labels:  jupyter-notebook
Augmentor
Image augmentation library in Python for machine learning.
Stars: ✭ 4,594 (+867.16%)
Mutual labels:  jupyter-notebook
Pretty Midi
Utility functions for handling MIDI data in a nice/intuitive way.
Stars: ✭ 477 (+0.42%)
Mutual labels:  jupyter-notebook
Gr Satellites
GNU Radio decoders for several Amateur satellites
Stars: ✭ 472 (-0.63%)
Mutual labels:  jupyter-notebook
Monk v1
Monk is a low code Deep Learning tool and a unified wrapper for Computer Vision.
Stars: ✭ 480 (+1.05%)
Mutual labels:  jupyter-notebook
Tutorials
Stars: ✭ 471 (-0.84%)
Mutual labels:  jupyter-notebook
Practical rl
A course in reinforcement learning in the wild
Stars: ✭ 4,741 (+898.11%)
Mutual labels:  jupyter-notebook
Python For Probability Statistics And Machine Learning
Jupyter Notebooks for Springer book "Python for Probability, Statistics, and Machine Learning"
Stars: ✭ 481 (+1.26%)
Mutual labels:  jupyter-notebook
Bayesian Stats Modelling Tutorial
How to do Bayesian statistical modelling using numpy and PyMC3
Stars: ✭ 480 (+1.05%)
Mutual labels:  jupyter-notebook
Epipolarpose
Self-Supervised Learning of 3D Human Pose using Multi-view Geometry (CVPR2019)
Stars: ✭ 477 (+0.42%)
Mutual labels:  jupyter-notebook

Book cover

Code repository

Practical Statistics for Data Scientists:

50+ Essential Concepts Using R and Python

by Peter Bruce, Andrew Bruce, and Peter Gedeck

Online

View the notebooks online: nbviewer

Excecute the notebooks in Binder: Binder

This can take some time if the binder environment needs to be rebuilt.

R

Run the following commands in R to install all required packages

if (!require(vioplot)) install.packages('vioplot')
if (!require(corrplot)) install.packages('corrplot')
if (!require(gmodels)) install.packages('gmodels')
if (!require(matrixStats)) install.packages('matrixStats')

if (!require(lmPerm)) install.packages('lmPerm')
if (!require(pwr)) install.packages('pwr')

if (!require(FNN)) install.packages('FNN')
if (!require(klaR)) install.packages('klaR')
if (!require(DMwR)) install.packages('DMwR')

if (!require(xgboost)) install.packages('xgboost')

if (!require(ellipse)) install.packages('ellipse')
if (!require(mclust)) install.packages('mclust')
if (!require(ca)) install.packages('ca')

Python

We recommend to use a conda environment to run the Python code.

conda create -n sfds python
conda activate sfds
conda env update -n sfds -f environment.yml

See also

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