From f5b4b0434c0fcc14d74e78c09dcd006405d7314b Mon Sep 17 00:00:00 2001 From: Richard Rigby Date: Wed, 11 Dec 2024 09:17:04 +0000 Subject: [PATCH] Fix plot command in section 9 make command match figure --- _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 613d3ae..5117e15 100644 --- a/_episodes/09-plotting.md +++ b/_episodes/09-plotting.md @@ -302,7 +302,7 @@ If we use Matplotlib's `contourf` function, we can include the x and y values in ~~~ # Create filled contour plot using Matplob's contourf function: -plt.contourf(x, y, z, cmap='RdBu') +plt.contourf(x, y, z) # Add a colour bar: plt.colorbar() ~~~