pandas-cookbook
Recipes for using Python's pandas library
File Explorer
Download Latest Version (.zip)- deploy.yml
- jupyter_notebook_config.py
- 311-service-requests.csv
- bikes.csv
- popularity-contest
- README.md
- weather_2012.csv
- weather_2012.sqlite
- function-completion.png
- tab-4-times.png
- tab-once.png
- tab-twice.png
- A quick tour of IPython Notebook.ipynb
- Chapter 1 - Reading from a CSV.ipynb
- Chapter 2 - Selecting data & finding the most common complaint type.ipynb
- Chapter 3 - Which borough has the most noise complaints (or, more selecting data).ipynb
- Chapter 4 - Find out on which weekday people bike the most with groupby and aggregate.ipynb
- Chapter 5 - Combining dataframes and scraping Canadian weather data.ipynb
- Chapter 6 - String Operations- Which month was the snowiest.ipynb
- Chapter 7 - Cleaning up messy data.ipynb
- Chapter 8 - How to deal with timestamps.ipynb
- Chapter 9 - Loading data from SQL databases.ipynb
- .dockerignore
- .gitignore
- build-environment.yml
- deploy.gif
- Dockerfile-Local
- environment-local.yml
- environment.yml
- README.md
- requirements.txt
- runtime.txt
# Installation Guide
1. Get the code
git clone https://github.com/jvns/pandas-cookbook
Downloads the entire project code from GitHub to your computer.
cd pandas-cookbook
Moves into the project folder you just downloaded.
2. Python
Easy RecommendedPrerequisites
python3 -m venv venv
Runs the Python script (or module).
pip install -r requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
jupyter notebook
Launches Jupyter in your browser so you can open and run the notebook (.ipynb) files.
If it runs without errors and prints output in the terminal, it worked.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
