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: _episodes/00-the-why-of-interactivity.md
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,9 @@ Humans benefit from visual representation of data to see patterns and plotting d
22
22
23
23
> ## Our reliance on the visual?
24
24
> When was the last time you saw a research paper without figures?
25
+
25
26
> When reading research do you start with the figures?
27
+
26
28
> How would the recent publications you have studied have made sense if you couldn't see the figures?
27
29
{: .discussion}
28
30
@@ -35,18 +37,21 @@ Interactivity gives the reader/user a chance to explore the data in ways a stati
35
37

36
38
37
39
> ## A wealth of choices for making figures in Python
38
-
> This tutorial makes us of Plotly and Streamlit, but a range of options now exist for visualizing data in the Python ecosystem. These are summariazed at [PyViz.org](https://pyviz.org/tools.html).
40
+
> This tutorial makes us of Plotly and Streamlit, but a range of options now exist for visualizing data in the Python ecosystem.
41
+
42
+
> These are summariazed at [PyViz.org](https://pyviz.org/tools.html).
43
+
39
44
> Many of the tools described are developed with specific use cases in mind, whereas others are intentionally more basic and adaptable. Some are focused on particular issues, such as choices of colour or aggregation of data. There is a lot here to explore...
40
45
{: .callout}
41
46
42
47
### The steps for constructing our interactive data visualization
43
48
44
-
- Building your environment for analysis and plotting (in a way that can be repeated)
45
-
- Data processing and cleaning.
46
-
- Separating out variables of interest.
47
-
- Identifying variables you may want to explore (and how best to map these to visual differences/dimensions).
48
-
- Visualizing the central data (choosing your plot types)
49
-
- Converting addtional choices in the visualization to widgets.
50
-
- Hosting a plot as an app (so it can be seen ad explored)
49
+
1. Building your environment for analysis and plotting (in a way that can be repeated)
50
+
2. Data processing and cleaning.
51
+
3. Separating out variables of interest.
52
+
4. Identifying variables you may want to explore (and how best to map these to visual differences/dimensions).
53
+
5. Visualizing the central data (choosing your plot types)
54
+
6. Converting addtional choices in the visualization to widgets.
55
+
&. Hosting a plot as an app (so it can be seen ad explored)
0 commit comments