From f1d21e3e15f33cbfc1f57578b8be7ffc14b095e5 Mon Sep 17 00:00:00 2001 From: lasse-cs Date: Thu, 9 Jan 2025 14:28:18 +0000 Subject: [PATCH] Update to fix typo --- _episodes/03-numpy_essential.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/03-numpy_essential.md b/_episodes/03-numpy_essential.md index 67ef726..b051f53 100644 --- a/_episodes/03-numpy_essential.md +++ b/_episodes/03-numpy_essential.md @@ -444,7 +444,7 @@ Masked median: 6.725283622741699 > measurements being taken, and some is also likely due to sampling > errors). So we would like to remove these erroneous data from our plot too. > 1. Create a new masked array (`immasked2`) where the lower limit is set to zero (you can use the `np.ma.masked_less_equal` function to do this). -> 2. Update the immasked2.mask to apply both masks (you can use the logical OR operator `|` to do this). Then plot the new asked data array. +> 2. Update the immasked2.mask to apply both masks (you can use the logical OR operator `|` to do this). Then plot the new masked data array. > > > ## New mask > > ~~~