Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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