1
0
mirror of https://github.com/gsi-upm/sitc synced 2026-03-01 17:28:17 +00:00

Update 2_3_1_Advanced_Visualisation.ipynb

Updated stripplot to auto instead of gray
This commit is contained in:
Carlos A. Iglesias
2026-02-25 16:21:44 +01:00
committed by GitHub
parent 470a3d692d
commit 99f8032d05

View File

@@ -330,7 +330,7 @@
"# Saving the resulting axes as ax each time causes the resulting plot to be shown\n", "# Saving the resulting axes as ax each time causes the resulting plot to be shown\n",
"# on top of the previous axes\n", "# on top of the previous axes\n",
"ax = sns.boxplot(x=\"species\", y=\"petal length (cm)\", data=iris_df)\n", "ax = sns.boxplot(x=\"species\", y=\"petal length (cm)\", data=iris_df)\n",
"ax = sns.stripplot(x=\"species\", y=\"petal length (cm)\", data=iris_df, jitter=True, edgecolor=\"gray\")" "ax = sns.stripplot(x=\"species\", y=\"petal length (cm)\", data=iris_df, jitter=True, edgecolor=\"auto\")"
] ]
}, },
{ {