Skip to content

Commit

Permalink
Update to fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lasse-cs authored and douglowe committed Jan 9, 2025
1 parent 0083092 commit fedb266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/03-numpy_essential.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
> > ~~~
Expand Down

0 comments on commit fedb266

Please sign in to comment.