From 99f8032d052897e22b66aa57d72ea890eafcad8b Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Wed, 25 Feb 2026 16:21:44 +0100 Subject: [PATCH] Update 2_3_1_Advanced_Visualisation.ipynb Updated stripplot to auto instead of gray --- ml1/2_3_1_Advanced_Visualisation.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml1/2_3_1_Advanced_Visualisation.ipynb b/ml1/2_3_1_Advanced_Visualisation.ipynb index bedaf67..f2de5bc 100644 --- a/ml1/2_3_1_Advanced_Visualisation.ipynb +++ b/ml1/2_3_1_Advanced_Visualisation.ipynb @@ -330,7 +330,7 @@ "# Saving the resulting axes as ax each time causes the resulting plot to be shown\n", "# on top of the previous axes\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\")" ] }, {