Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pandas Cookbook | 6,068 | 2 months ago | 32 | Jupyter Notebook | ||||||
Recipes for using Python's pandas library | ||||||||||
Pandas Cookbook | 596 | 5 months ago | 6 | mit | Jupyter Notebook | |||||
Pandas Cookbook, published by Packt | ||||||||||
Pandas Cookbook Second Edition | 234 | 4 months ago | 6 | mit | Jupyter Notebook | |||||
Pandas Cookbook Second Edition, published by Packt | ||||||||||
Matplotlib 3.0 Cookbook | 109 | 4 months ago | 1 | mit | Jupyter Notebook | |||||
Matplotlib 3.0 Cookbook, published by Packt | ||||||||||
Financial Analysis Using Python | 10 | 3 years ago | Jupyter Notebook | |||||||
Cookbook of iPython Notebook Recipes | ||||||||||
Data Engineering | 9 | a year ago | mit | |||||||
Common data manipulations in different languages and frameworks. | ||||||||||
Howtos | 5 | 2 years ago | Jupyter Notebook | |||||||
How-To Recipes, 碎片化实用教程, 开发技巧 | ||||||||||
Pydata Cookbook | 4 | 5 years ago | Jupyter Notebook | |||||||
blaze, odo, pandas, numpy | ||||||||||
Dand_vip_class | 3 | 3 years ago | ||||||||
Udacity-DAND-VIP入门课程 每周导学及项目 | ||||||||||
My Little Pandas Cookbook | 3 | a year ago | Jupyter Notebook | |||||||
pandas is a Python library for doing data analysis. It's really fast and lets you do exploratory work incredibly quickly.
The goal of this cookbook is to give you some concrete examples for getting started with pandas. The docs are really comprehensive. However, I've often had people tell me that they have some trouble getting started, so these are examples with real-world data, and all the bugs and weirdness that entails.
It uses 3 datasets:
It comes with batteries (data) included, so you can try out all the examples right away.
The easiest way is to try it out instantly online using Binder's awesome service. Start by clicking here, wait for it to launch, then click on "cookbook", and you'll be off to the races! It will let you run all the code interactively without having to install anything on your computer.
To install it locally, you'll need Jupyter notebook and pandas on your computer.
You can get these using pip
(you may want to do this inside a virtual environment to avoid conflicting with your other libraries).
pip install -r requirements.txt
This can be difficult to get set up and require you to compile a whole bunch of things. I instead use and recommend Anaconda, which is a Python distribution which will give you everything you need. It's free and open source.
Once you have pandas and Jupyter, you can get going!
git clone https://github.com/jvns/pandas-cookbook.git
cd pandas-cookbook/cookbook
jupyter notebook
A tab should open up in your browser at http://localhost:8888
Happy pandas!
This repository contains a Dockerfile and can be built into a docker container. To build the container run following command from inside of the repository directory:
docker build -t jvns/pandas-cookbook -f Dockerfile-Local .
run the container:
docker run -d -p 8888:8888 -e "PASSWORD=MakeAPassword" <IMAGE ID>
you can find out about the id of the image, by checking
docker images
After starting the container, you can access the Jupyter notebook with the cookbook on port 8888.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License