Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbeleidy/data-visualization-slides
An intro & overview of Data Visualizations
https://github.com/sbeleidy/data-visualization-slides
data-visualization matplotlib
Last synced: about 1 month ago
JSON representation
An intro & overview of Data Visualizations
- Host: GitHub
- URL: https://github.com/sbeleidy/data-visualization-slides
- Owner: sbeleidy
- Created: 2017-06-06T05:36:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T06:28:37.000Z (over 7 years ago)
- Last Synced: 2024-11-07T01:46:01.380Z (3 months ago)
- Topics: data-visualization, matplotlib
- Language: Jupyter Notebook
- Homepage:
- Size: 2.42 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Visualization Slides
These slides are an intro and overview of Data Visualization. You can view the contents in the Jupyter notebooks or run the slides.
## Load necessary libraries
You can use pip or conda to load the necessary libraries.
### pip
```bash
pip install -r requirements.txt
```### conda
You can use conda to set up an environment for the slides by running:
```bash
conda env create -f environment.yml
source activate data-viz-slides
```You can learn more about conda environments on their [managing environments page](https://conda.io/docs/using/envs.html#managing-environments).
## Run locally
To run the slides use the following command:
```bash
jupyter nbconvert --to slides Data\ Visualization.ipynb --post serve
```