Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jackdbd/python-firenze-meetup-2020-02-06
Jupyter notebook for my talk @ Python Firenze Meetup, 2020-02-06
https://github.com/jackdbd/python-firenze-meetup-2020-02-06
altair dataviz grammar-of-graphics jupyter-notebook meetup pandas seaborn
Last synced: about 2 months ago
JSON representation
Jupyter notebook for my talk @ Python Firenze Meetup, 2020-02-06
- Host: GitHub
- URL: https://github.com/jackdbd/python-firenze-meetup-2020-02-06
- Owner: jackdbd
- Created: 2020-02-04T20:47:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-09T16:44:26.000Z (almost 5 years ago)
- Last Synced: 2024-10-24T14:33:10.777Z (3 months ago)
- Topics: altair, dataviz, grammar-of-graphics, jupyter-notebook, meetup, pandas, seaborn
- Language: Jupyter Notebook
- Homepage: http://bit.ly/pyfirenze-dataviz
- Size: 18.6 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyFirenze Meetup
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jackdbd/python-firenze-meetup-2020-02-06/master)
![An animated GIF showing a map of food inspections in San Francisco in 2013-2016](https://raw.githubusercontent.com/jackdbd/python-firenze-meetup-2020-02-06/master/images/high-risk-vermin-infestation-sf.gif "High risk of vermin infestation in San Francisco, 2013-2016")
![A map of food inspections in San Francisco in 2016](https://raw.githubusercontent.com/jackdbd/python-firenze-meetup-2020-02-06/master/images/food-inspections-in-sf.png "Number of food inspections in San Francisco, 2016 (aggregated by ZIP code)")
![Facet grid of the reaction times for sleep-deprived subjects over 10 days](https://raw.githubusercontent.com/jackdbd/python-firenze-meetup-2020-02-06/master/images/sleep-deprivation-altair-facet-grid.png "Reaction times for sleep-deprived subjects over 10 days")
## Installation
If you don't already have it, download [Anaconda](https://www.anaconda.com/distribution/) or [Miniconda](https://docs.conda.io/en/latest/miniconda.html).
Create the Python virtual environment from the `environment.yml` file:
```sh
conda env create -f environment.yml
```## Run the notebook
Activate the virtual environment and run the jupyter notebook server:
```sh
conda activate pyfirenze37
jupyter notebook
```To deactivate the virtual environment, run `conda deactivate` from this repository root.