Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.