Skip to content

Commit 97e91e5

Browse files
committed
Remove stable diffusion
1 parent 2993518 commit 97e91e5

File tree

2 files changed

+7
-524
lines changed

2 files changed

+7
-524
lines changed

notebooks/population.ipynb

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,17 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": 1,
6-
"metadata": {},
7-
"outputs": [],
8-
"source": [
9-
"import matplotlib.pyplot as plt\n",
10-
"import pandas"
11-
]
12-
},
133
{
144
"cell_type": "markdown",
155
"metadata": {},
166
"source": [
17-
"Let's plot some data from a CSV file. Edit `data/atlantis.csv` and re-run this cell to see your changes."
7+
"# Population Data from CSV\n",
8+
"\n",
9+
"This notebooks reads sample population data from `data/atlantis.csv` and plots it using Matplotlib. Edit `data/atlantis.csv` and re-run this cell to see how the plots change!"
1810
]
1911
},
2012
{
2113
"cell_type": "code",
22-
"execution_count": 2,
14+
"execution_count": 5,
2315
"metadata": {},
2416
"outputs": [
2517
{
@@ -34,6 +26,9 @@
3426
}
3527
],
3628
"source": [
29+
"import matplotlib.pyplot as plt\n",
30+
"import pandas\n",
31+
"\n",
3732
"df = pandas.read_csv('../data/atlantis.csv')\n",
3833
"x = df['year']\n",
3934
"y = df['population']\n",

0 commit comments

Comments
 (0)