You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,18 @@
4
4
5
5
*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.*
6
6
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.
8
8
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).
10
10
11
11
## Outline of Materials
12
12
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).
14
14
15
15
### Why We Visualize
16
16
17
17
[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>
18
19
[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.
19
20
20
21
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
24
25
### Overview of Python Visualization Landscape
25
26
26
27
[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>
27
29
[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.
28
30
29
31
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
33
35
### Statistical Visualization in the Wild
34
36
35
37
[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>
36
39
[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.
37
40
38
41
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
46
49
### Library Deep-Dive (Plotly)
47
50
48
51
[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>
49
53
[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.
50
54
51
55
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
60
64
61
65
## Setup Instructions
62
66
63
-
- clone this repository locally
67
+
- clone this repository
64
68
- create a virtual environment using `python3 -m venv env`
65
69
- additional information about this [can be found here](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/)
66
70
- activate that virtual environment using `source env/bin/activate`
67
71
- install needed packages using `pip install -r requirements.txt`
68
72
- additional information about this [can be found here](https://pip.pypa.io/en/latest/user_guide/#requirements-files)
69
73
- 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:
0 commit comments