From 94a8e4dde64d0f911e55f62e0e8127d95bcf707d Mon Sep 17 00:00:00 2001 From: "Sadie L. Bartholomew" Date: Tue, 18 Nov 2025 14:53:10 +0000 Subject: [PATCH 1/3] Update Plotting (09) lesson to avoid 'simple' assertion --- episodes/09-plotting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/09-plotting.md b/episodes/09-plotting.md index fad27e001..e528e840d 100644 --- a/episodes/09-plotting.md +++ b/episodes/09-plotting.md @@ -27,7 +27,7 @@ exercises: 15 import matplotlib.pyplot as plt ``` -- Simple plots are then (fairly) simple to create. +- Simple plots can be created with just one call, to `plt.plot`: ```python time = [0, 1, 2, 3] From c38226dd1b6f82d07144bbea9d97e34930c739c5 Mon Sep 17 00:00:00 2001 From: "Sadie L. Bartholomew" Date: Tue, 18 Nov 2025 14:58:20 +0000 Subject: [PATCH 2/3] Update Plotting (09) lesson to clarify arguments to use for plt.plot --- episodes/09-plotting.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/episodes/09-plotting.md b/episodes/09-plotting.md index e528e840d..aa689868e 100644 --- a/episodes/09-plotting.md +++ b/episodes/09-plotting.md @@ -27,7 +27,8 @@ exercises: 15 import matplotlib.pyplot as plt ``` -- Simple plots can be created with just one call, to `plt.plot`: +- Simple plots can be created with just one call, to `plt.plot` with the x variable and then y variable to + plot as the arguments: ```python time = [0, 1, 2, 3] From 1d882a2620121eb9d55fc286fc84d7b22ae73fc7 Mon Sep 17 00:00:00 2001 From: "Sadie L. Bartholomew" Date: Wed, 19 Nov 2025 12:27:14 +0000 Subject: [PATCH 3/3] Update Plotting (09) lesson to address feedback: tweak wording --- episodes/09-plotting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/09-plotting.md b/episodes/09-plotting.md index aa689868e..969ec3e33 100644 --- a/episodes/09-plotting.md +++ b/episodes/09-plotting.md @@ -27,7 +27,7 @@ exercises: 15 import matplotlib.pyplot as plt ``` -- Simple plots can be created with just one call, to `plt.plot` with the x variable and then y variable to +- Simple plots can be created with a single call, to `plt.plot` with the x variable and then y variable to plot as the arguments: ```python