Skip to content

Commit

Permalink
change 'mean' to 'percentile' in doc strings of preprocessor statisti…
Browse files Browse the repository at this point in the history
…cs (#2327)

Co-authored-by: Manuel Schlund <[email protected]>
  • Loading branch information
lukruh and schlunma authored Apr 2, 2024
1 parent 97ef75c commit 46207f8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions esmvalcore/preprocessor/_multimodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,8 @@ def multi_model_statistics(
Desired statistics need to be given as a list, e.g., ``statistics: ['mean',
'median']``. For some statistics like percentiles, it is also possible to
pass additional keyword arguments, for example ``statistics: [{'operator':
'mean', 'percent': 20}]``. A full list of supported statistics is available
in the section on :ref:`stat_preprocs`.
'percentile', 'percent': 20}]``. A full list of supported statistics is
available in the section on :ref:`stat_preprocs`.
This function can handle cubes with differing metadata:
Expand Down Expand Up @@ -758,9 +758,9 @@ def multi_model_statistics(
statistics:
Statistical operations to be computed, e.g., ``['mean', 'median']``.
For some statistics like percentiles, it is also possible to pass
additional keyword arguments, e.g., ``[{'operator': 'mean', 'percent':
20}]``. All supported options are are given in :ref:`this table
<supported_stat_operator>`.
additional keyword arguments, e.g., ``[{'operator': 'percentile',
'percent': 20}]``. All supported options are are given in
:ref:`this table <supported_stat_operator>`.
output_products: dict
For internal use only. A dict with statistics names as keys and
preprocessorfiles as values. If products are passed as input, the
Expand Down Expand Up @@ -845,9 +845,9 @@ def ensemble_statistics(
statistics:
Statistical operations to be computed, e.g., ``['mean', 'median']``.
For some statistics like percentiles, it is also possible to pass
additional keyword arguments, e.g., ``[{'operator': 'mean', 'percent':
20}]``. All supported options are are given in :ref:`this table
<supported_stat_operator>`.
additional keyword arguments, e.g., ``[{'operator': 'percentile',
'percent': 20}]``. All supported options are are given in
:ref:`this table <supported_stat_operator>`.
output_products: dict
For internal use only. A dict with statistics names as keys and
preprocessorfiles as values. If products are passed as input, the
Expand Down

0 comments on commit 46207f8

Please sign in to comment.