Skip to content

Commit 713da20

Browse files
committed
few minor changes to README
1 parent 2943d44 commit 713da20

File tree

2 files changed

+62
-54
lines changed

2 files changed

+62
-54
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@
44

55
*All views expressed on this site are my own and do not represent the opinions of any entity with which I have been, am now, or will be affiliated.*
66

7-
This repository contains all materials related to a lecture / seminar I teach on practical data visualization with python. What I mean by "practical" is that the materials herein do not focus on one particularly library or data visualization method; rather, my goal is to empower the consumer of this content with the tools, heuristics, and methods needed to handle a wide variety of data visualization problems.
7+
This repository contains all materials related to a lecture / seminar I teach on practical data visualization with python. What I mean by "practical" is that the materials herein do not focus on one particular library or data visualization method; rather, my goal is to empower the consumer of this content with the tools, heuristics, and methods needed to handle a wide variety of data visualization problems.
88

9-
This is a work in progress that will be evolving rapidly over the coming weeks and months, so please check back often for new additions and refinements, and if you'd like to contact me, don't hesitate to reach out [via Twitter here](https://twitter.com/ByPaulJ).
9+
If you have questions, comments, or suggested alterations to these materials, please [open an issue](https://github.com/pmaji/practical-python-data-viz-guide/issues) here on GitHub. Also, don't hesitate to reach out [via Twitter here](https://twitter.com/ByPaulJ).
1010

1111
## Outline of Materials
1212

13-
In the section below you'll find a brief outline of the content contained in the four sections of this seminar. For each section there is a separate Jupyter notebook of python code containing all the materials for that section. Each notebook will start with a few setup steps--package imports and data prep mostly--that are almost identical between the notebooks, directly after which comes the content for each section.
13+
Below you'll find a brief outline of the content contained in the four sections of this seminar. For each section there is a separate notebook of python code containing all the materials for that section. Each notebook will start with a few setup steps--package imports and data prep mostly--that are almost identical between the notebooks, directly after which comes the content for each section. For information about the data used in these materials, check out the `data_prep_nb.ipynb` notebook, the easy-to-view version of which is [hosted here](https://nbviewer.jupyter.org/github/pmaji/practical-python-data-viz-guide/blob/master/notebooks/data_prep_nb.ipynb).
1414

1515
### Why We Visualize
1616

1717
[Here is the link](https://nbviewer.jupyter.org/github/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_1_main_nb.ipynb) to the easy-to-view notebook for this section of material.
18+
<br>
1819
[Here is the link](https://github.com/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_1_main_nb.ipynb) to the GitHub-hosted notebook for this section of the material.
1920

2021
1. The power of visual data representation and storytelling.
@@ -24,6 +25,7 @@ In the section below you'll find a brief outline of the content contained in the
2425
### Overview of Python Visualization Landscape
2526

2627
[Here is the link](https://nbviewer.jupyter.org/github/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_2_main_nb.ipynb) to the easy-to-view notebook for this section of material.
28+
<br>
2729
[Here is the link](https://github.com/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_2_main_nb.ipynb) to the GitHub-hosted notebook for this section of the material.
2830

2931
1. Intro to the visualization ecosystem: python's Tower of Babel.
@@ -33,6 +35,7 @@ In the section below you'll find a brief outline of the content contained in the
3335
### Statistical Visualization in the Wild
3436

3537
[Here is the link](https://nbviewer.jupyter.org/github/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_3_main_nb.ipynb) to the easy-to-view notebook for this section of material.
38+
<br>
3639
[Here is the link](https://github.com/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_3_main_nb.ipynb) to the GitHub-hosted notebook for this section of the material.
3740

3841
1. Example business use case of data visualization:
@@ -46,6 +49,7 @@ In the section below you'll find a brief outline of the content contained in the
4649
### Library Deep-Dive (Plotly)
4750

4851
[Here is the link](https://nbviewer.jupyter.org/github/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_4_main_nb.ipynb) to the easy-to-view notebook for this section of material.
52+
<br>
4953
[Here is the link](https://github.com/pmaji/practical-python-data-viz-guide/blob/master/notebooks/part_4_main_nb.ipynb) to the GitHub-hosted notebook for this section of the material.
5054

5155
1. Quick and simple data visualizations with Plotly Express.
@@ -60,11 +64,15 @@ There is a homework exercise associated with these materials, for those interest
6064

6165
## Setup Instructions
6266

63-
- clone this repository locally
67+
- clone this repository
6468
- create a virtual environment using `python3 -m venv env`
6569
- additional information about this [can be found here](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/)
6670
- activate that virtual environment using `source env/bin/activate`
6771
- install needed packages using `pip install -r requirements.txt`
6872
- additional information about this [can be found here](https://pip.pypa.io/en/latest/user_guide/#requirements-files)
6973
- run an instance of jupyter lab out of your virutal env using `env/bin/jupyter-lab`
70-
- start by opening and running the `main_lecture_nb.ipynb` file, in which the majority of the content is located
74+
- opening and run the four main files of content for this course--one for each section:
75+
- `part_1_main_nb.ipynb`
76+
- `part_2_main_nb.ipynb`
77+
- `part_3_main_nb.ipynb`
78+
- `part_4_main_nb.ipynb`

notebooks/part_3_main_nb.ipynb

Lines changed: 49 additions & 49 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)