Skip to content

Commit 0f51add

Browse files
committed
minor updates
1 parent d35741d commit 0f51add

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

notebooks/16_machine_learning_algorithms.ipynb

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,13 @@
196196
"cell_type": "code",
197197
"execution_count": 2,
198198
"id": "c42c7331-88e2-4403-a73d-734355274ed4",
199-
"metadata": {},
199+
"metadata": {
200+
"editable": true,
201+
"slideshow": {
202+
"slide_type": ""
203+
},
204+
"tags": []
205+
},
200206
"outputs": [
201207
{
202208
"data": {
@@ -305,7 +311,10 @@
305311
}
306312
],
307313
"source": [
308-
"filename = \"../datasets/penguins_size.csv\" # contains some changes with respect to the original dataset!\n",
314+
"# The \"classical\" penguins dataset, but with some additional changes \n",
315+
"filename = \"../datasets/penguins_size.csv\" \n",
316+
"# or: filename = r\"https://raw.githubusercontent.com/florian-huber/data_science_course/refs/heads/main/datasets/penguins_size.csv\"\n",
317+
"\n",
309318
"data = pd.read_csv(filename)\n",
310319
"data.head()"
311320
]
@@ -635,7 +644,13 @@
635644
"cell_type": "code",
636645
"execution_count": 7,
637646
"id": "fd4b9f03-15a2-412f-a6ab-624d7670dfce",
638-
"metadata": {},
647+
"metadata": {
648+
"editable": true,
649+
"slideshow": {
650+
"slide_type": ""
651+
},
652+
"tags": []
653+
},
639654
"outputs": [
640655
{
641656
"data": {
@@ -659,7 +674,7 @@
659674
}
660675
],
661676
"source": [
662-
"sb.pairplot(data, hue=\"species\", diag_kind=\"hist\")"
677+
"sb.pairplot(data, hue=\"species\", diag_kind=\"hist\", corner=True)"
663678
]
664679
},
665680
{

0 commit comments

Comments
 (0)