Skip to content

Commit 5f8e9ae

Browse files
committed
Added headings to EDA notebook
1 parent b67aa4b commit 5f8e9ae

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

EDA.ipynb

+33
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "4f6b6b45-966c-44a8-aec6-e5e8df623d1b",
6+
"metadata": {},
7+
"source": [
8+
"# Exploratory Data Analysis"
9+
]
10+
},
311
{
412
"cell_type": "code",
513
"execution_count": 1,
@@ -13,6 +21,14 @@
1321
"import seaborn as sns"
1422
]
1523
},
24+
{
25+
"cell_type": "markdown",
26+
"id": "64cb1ffb-4fff-482b-8599-3b6136b3a84a",
27+
"metadata": {},
28+
"source": [
29+
"## Read in the Data"
30+
]
31+
},
1632
{
1733
"cell_type": "code",
1834
"execution_count": 2,
@@ -263,6 +279,15 @@
263279
"traffic.head()"
264280
]
265281
},
282+
{
283+
"cell_type": "markdown",
284+
"id": "83718351-a188-498e-9c92-bca71ad4901d",
285+
"metadata": {},
286+
"source": [
287+
"## Create weekly averages\n",
288+
"Note: this was before we had the time series lesson so these methods aren't preferred, and are only used for this notebooks. Other notebooks use preferred methods"
289+
]
290+
},
266291
{
267292
"cell_type": "code",
268293
"execution_count": 7,
@@ -763,6 +788,14 @@
763788
"max(weekly_traffic)"
764789
]
765790
},
791+
{
792+
"cell_type": "markdown",
793+
"id": "a2c5f97d-ada3-47ac-9331-59ef47c424f0",
794+
"metadata": {},
795+
"source": [
796+
"## Visualize the Data"
797+
]
798+
},
766799
{
767800
"cell_type": "code",
768801
"execution_count": 34,

0 commit comments

Comments
 (0)