Skip to content

Commit 0e6b5ff

Browse files
committed
Adding some comments to show how tracked
1 parent a78b3ee commit 0e6b5ff

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

notebooks/beer_analysis.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
all_beer.head()
4242

4343
# %%
44+
# Useful to check for null values
4445
empty_data = all_beer.isna().sum()
4546

4647
# %%
@@ -78,6 +79,7 @@
7879
fig.show()
7980

8081
# %%
82+
# Do some analysis on MN beers
8183
mn_beer = all_beer[all_beer['state'].str.contains('MN')].copy()
8284

8385
# %%
@@ -87,6 +89,7 @@
8789
all_beer.describe()
8890

8991
# %%
92+
# Any relationship betwee alcohol volume and IBU?
9093
fig = px.scatter(mn_beer,
9194
x="abv",
9295
y="ibu",

0 commit comments

Comments
 (0)