From 5433d11aa208c920fdc06ab481cdff94f52797e3 Mon Sep 17 00:00:00 2001 From: Damien Irving Date: Thu, 25 Jul 2024 16:07:13 -0400 Subject: [PATCH] Update content in 02-visualisation.md --- episodes/02-visualisation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/02-visualisation.md b/episodes/02-visualisation.md index 24baa81..baf09f0 100644 --- a/episodes/02-visualisation.md +++ b/episodes/02-visualisation.md @@ -261,7 +261,7 @@ plt.show() The default colorbar used by matplotlib is `viridis`. It used to be `jet`, -but that was changed a couple of years ago in response to the +but that was changed in response to the [\#endtherainbow](https://www.climate-lab-book.ac.uk/2014/end-of-the-rainbow/) campaign. Putting all the code together @@ -334,7 +334,7 @@ clim.plot.contourf( Rather than plot the annual climatology, edit the code so that it plots the June-August (JJA) season. -(Hint: the [groupby]() functionality can be used to +(Hint: the `groupby` functionality can be used to group all the data into seasons prior to averaging over the time axis) ::::::::::::::: solution