All Projects → TomAugspurger → Pydataseattle

TomAugspurger / Pydataseattle

For the pandas tutorial at PyData Seattle: https://www.youtube.com/watch?v=otCriSKVV_8

Projects that are alternatives of or similar to Pydataseattle

Prml
PRML algorithms implemented in Python
Stars: ✭ 10,206 (+9350%)
Mutual labels:  jupyter-notebook
Ultra96 Pynq
Board files to build Ultra 96 PYNQ image
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Psgan
Periodic Spatial Generative Adversarial Networks
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Examples
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2)
Stars: ✭ 41,480 (+38307.41%)
Mutual labels:  jupyter-notebook
Robustness applications
Notebooks for reproducing the paper "Computer Vision with a Single (Robust) Classifier"
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Py Wsi
Python package for dealing with whole slide images (.svs) for machine learning, particularly for fast prototyping. Includes patch sampling and storing using OpenSlide. Patches may be stored in LMDB, HDF5 files, or to disk. It is highly recommended to fork and download this repository so that personal customisations can be made for your work.
Stars: ✭ 107 (-0.93%)
Mutual labels:  jupyter-notebook
Ganotebooks
wgan, wgan2(improved, gp), infogan, and dcgan implementation in lasagne, keras, pytorch
Stars: ✭ 1,446 (+1238.89%)
Mutual labels:  jupyter-notebook
Sas Viya Programming
Code samples and materials to help you learn to access SAS Viya services by writing programs in Python and other open-source languages
Stars: ✭ 107 (-0.93%)
Mutual labels:  jupyter-notebook
Learning Vis Tools
Learning Vis Tools: Tutorial materials for Data Visualization course at HKUST
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Isl Python
Porting the R code in ISL to python. Labs and exercises
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Getting Started With Google Bert
Build and train state-of-the-art natural language processing models using BERT
Stars: ✭ 107 (-0.93%)
Mutual labels:  jupyter-notebook
Python Machine Learning
Tous les codes utilisés dans la série YouTube Python Spécial Machine Learning !
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Sw machine learning
machine learning
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Kalman And Bayesian Filters In Python
Kalman Filter book using Jupyter Notebook. Focuses on building intuition and experience, not formal proofs. Includes Kalman filters,extended Kalman filters, unscented Kalman filters, particle filters, and more. All exercises include solutions.
Stars: ✭ 11,233 (+10300.93%)
Mutual labels:  jupyter-notebook
Openmorph
Curated list of open-access databases with human structural MRI data
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Pyldavis
Python library for interactive topic model visualization. Port of the R LDAvis package.
Stars: ✭ 1,550 (+1335.19%)
Mutual labels:  jupyter-notebook
Ml Demos
Python code examples for the feedly Machine Learning blog (https://blog.feedly.com/category/all/Machine-Learning/)
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Xgboost
Tutorial how to use xgboost
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Deep Ml Meetups
A central repository for all my projects
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook
Lda2vec Pytorch
Topic modeling with word vectors
Stars: ✭ 108 (+0%)
Mutual labels:  jupyter-notebook

Pandas .head() to .tail()

Gitter

Video Recording

Should I Attend?

I'm targeting an experience level somewhere between novice and intermediate. Hopefully you're familiar with the IPython notebook, and have heard of pandas. If not, don't worry. The first two notebooks (~20 minutes) are for people who may be entirely new to NumPy and pandas.

If you're more experienced, the first 30-40 minutes of the talk will likely be a review for you. After that we'll get into some more advanced topics.

Setup

First clone this repository

git clone https://github.com/tomaugspurger/pydataseattle
cd pydataseattle

If that fails, try the zip. It will probably be best to do a git pull just before the tutorial starts.

Environment

Make sure that you're in the pydataseattle folder.

With conda:

conda update --all
conda env create -f environment.yml
source activate sea  # or activate sea on Windows
pip install beautifulsoup4
pip install simplejson
pip install vincent

With pip / virtualenv:

$ [sudo] pip install virtualenv  # try without sudo first
$ virtualenv --python=`which python3` sea
$ source sea/bin/activate
$ pip install -U pip
$ pip install -r requirements.txt

Verify your installation with

python check_environment.py

Chat

I have no idea if this is useful, but we have a chat room for the tutorial. If you have them, you can log in with your GitHub credentials.

Speak up in there with installation problems / questions / random gifs if you find that more convenient.

Contents

  • [Basics](notebooks/1. Basics.ipynb)
  • [Operations](notebooks/2. Operations.ipynb)
  • [Indexing](notebooks/3. Indexing.ipynb)
  • [Groupby](notebooks/4. Groupby.ipynb)
  • [Tidy Data](5. Tidy Data.ipynb)
  • [For Stats & ML](6. For Stats & ML.ipynb)
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].