Skip to content

Commit 9377f43

Browse files
committed
fix heading levels
1 parent dd218aa commit 9377f43

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

lecture_1_demo_solutions.ipynb

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,13 @@
11911191
{
11921192
"cell_type": "code",
11931193
"execution_count": 8,
1194-
"metadata": {},
1194+
"metadata": {
1195+
"editable": true,
1196+
"slideshow": {
1197+
"slide_type": ""
1198+
},
1199+
"tags": []
1200+
},
11951201
"outputs": [
11961202
{
11971203
"data": {
@@ -1299,7 +1305,7 @@
12991305
"tags": []
13001306
},
13011307
"source": [
1302-
"#### Which complaints are most common?"
1308+
"### Which complaints are most common?"
13031309
]
13041310
},
13051311
{
@@ -1424,7 +1430,9 @@
14241430
}
14251431
],
14261432
"source": [
1427-
"complaint_counts = requests_clean.groupby(\"Complaint Type\").size().reset_index(name=\"count\")\n",
1433+
"complaint_counts = (\n",
1434+
" requests_clean.groupby(\"Complaint Type\").size().reset_index(name=\"count\")\n",
1435+
")\n",
14281436
"complaint_counts"
14291437
]
14301438
},
@@ -1452,7 +1460,7 @@
14521460
"tags": []
14531461
},
14541462
"source": [
1455-
"#### What's the most frequent request per agency?\n",
1463+
"### What's the most frequent request per agency?\n",
14561464
"\n",
14571465
"First, create a DataFrame that contains the count of complaints per `Agency` per `Complaint Type`."
14581466
]

0 commit comments

Comments
 (0)