Skip to content

Commit

Permalink
link percentile as lazy option (#5128)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcomer authored Jan 4, 2023
1 parent fc302c9 commit f190415
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/src/whatsnew/latest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ This document explains the changes made to Iris for this release

#. `@rcomer`_ clarified instructions for updating gallery tests. (:pull:`5100`)

#. `@rcomer`_ linked the :obj:`~iris.analysis.PERCENTILE` aggregator from the
:obj:`~iris.analysis.MEDIAN` docstring, noting that the former handles lazy
data. (:pull:`5128`)


💼 Internal
===========
Expand Down
3 changes: 2 additions & 1 deletion lib/iris/analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,8 @@ def interp_order(length):
result = cube.collapsed('longitude', iris.analysis.MEDIAN)
This aggregator handles masked data, but NOT lazy data.
This aggregator handles masked data, but NOT lazy data. For lazy aggregation,
please try :obj:`~.PERCENTILE`.
"""

Expand Down

0 comments on commit f190415

Please sign in to comment.