Skip to content

Commit 52a65e0

Browse files
committed
Add more slide ids for links in section 3.
1 parent 4f1bd04 commit 52a65e0

File tree

1 file changed

+36
-12
lines changed

1 file changed

+36
-12
lines changed

slides/3-data_visualization.ipynb

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@
4646
"slideshow": {
4747
"slide_type": "slide"
4848
},
49-
"tags": []
49+
"tags": [
50+
"id_plotting-with-pandas"
51+
]
5052
},
5153
"source": [
5254
"## Plotting with pandas\n",
@@ -206,7 +208,9 @@
206208
"slideshow": {
207209
"slide_type": "subslide"
208210
},
209-
"tags": []
211+
"tags": [
212+
"id_line-plots"
213+
]
210214
},
211215
"source": [
212216
"### Line plots\n",
@@ -2135,7 +2139,9 @@
21352139
"slideshow": {
21362140
"slide_type": "subslide"
21372141
},
2138-
"tags": []
2142+
"tags": [
2143+
"id_bar-plots"
2144+
]
21392145
},
21402146
"source": [
21412147
"### Bar plots\n",
@@ -2245,7 +2251,9 @@
22452251
"slideshow": {
22462252
"slide_type": "subslide"
22472253
},
2248-
"tags": []
2254+
"tags": [
2255+
"id_formatting-with-matplotlib"
2256+
]
22492257
},
22502258
"source": [
22512259
"Pandas offers other plot types via the `kind` parameter, so we specify `kind='bar'` when calling the `plot()` method. Then, we further format the visualization using the `Axes` object returned by the `plot()` method:"
@@ -3700,7 +3708,9 @@
37003708
"slideshow": {
37013709
"slide_type": "subslide"
37023710
},
3703-
"tags": []
3711+
"tags": [
3712+
"id_plotting-distributions"
3713+
]
37043714
},
37053715
"source": [
37063716
"### Plotting distributions\n",
@@ -3725,7 +3735,9 @@
37253735
"slideshow": {
37263736
"slide_type": "subslide"
37273737
},
3728-
"tags": []
3738+
"tags": [
3739+
"id_subplots"
3740+
]
37293741
},
37303742
"source": [
37313743
"While pandas lets us specify that we want subplots and their layout (with the `subplots` and `layout` parameters, respectively), using Matplotlib to create the subplots directly gives us additional flexibility:"
@@ -6489,7 +6501,9 @@
64896501
"slideshow": {
64906502
"slide_type": "slide"
64916503
},
6492-
"tags": []
6504+
"tags": [
6505+
"id_plotting-with-seaborn"
6506+
]
64936507
},
64946508
"source": [
64956509
"## Plotting with Seaborn\n",
@@ -6504,7 +6518,9 @@
65046518
"slideshow": {
65056519
"slide_type": "subslide"
65066520
},
6507-
"tags": []
6521+
"tags": [
6522+
"id_visualizing-long-format-data"
6523+
]
65086524
},
65096525
"source": [
65106526
"### Visualizing long-format data\n",
@@ -7941,7 +7957,9 @@
79417957
"slideshow": {
79427958
"slide_type": "subslide"
79437959
},
7944-
"tags": []
7960+
"tags": [
7961+
"id_heatmaps"
7962+
]
79457963
},
79467964
"source": [
79477965
"### Heatmaps\n",
@@ -12695,7 +12713,9 @@
1269512713
"slideshow": {
1269612714
"slide_type": "slide"
1269712715
},
12698-
"tags": []
12716+
"tags": [
12717+
"id_customizing-plots-with-matplotlib"
12718+
]
1269912719
},
1270012720
"source": [
1270112721
"## Customizing plots with Matplotlib\n",
@@ -12710,7 +12730,9 @@
1271012730
"slideshow": {
1271112731
"slide_type": "subslide"
1271212732
},
12713-
"tags": []
12733+
"tags": [
12734+
"id_adding-shaded-regions"
12735+
]
1271412736
},
1271512737
"source": [
1271612738
"### Adding shaded regions\n",
@@ -14133,7 +14155,9 @@
1413314155
"slideshow": {
1413414156
"slide_type": "subslide"
1413514157
},
14136-
"tags": []
14158+
"tags": [
14159+
"id_adding-annotations"
14160+
]
1413714161
},
1413814162
"source": [
1413914163
"### Adding annotations\n",

0 commit comments

Comments
 (0)