ee.Reducer.intervalMean
Creates a Reducer to compute the mean of all inputs in the specified percentile range. For small numbers of inputs (up to maxRaw) the mean will be computed directly; for larger numbers of inputs the mean will be derived from a histogram.
Usage | Returns | ee.Reducer.intervalMean(minPercentile, maxPercentile, maxBuckets, minBucketWidth, maxRaw) | Reducer |
Argument | Type | Details | minPercentile | Float | The lower bound of the percentile range. |
maxPercentile | Float | The upper bound of the percentile range. |
maxBuckets | Integer, default: null | The maximum number of buckets to use when building a histogram; will be rounded up to a power of 2. |
minBucketWidth | Float, default: null | The minimum histogram bucket width, or null to allow any power of 2. |
maxRaw | Integer, default: null | The number of values to accumulate before building the initial histogram. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["Calculates the mean of values within a specified percentile range, using either direct computation or a histogram-based approach."],["Offers control over the histogram construction with parameters for maximum buckets, minimum bucket width, and the threshold for switching to histogram-based calculation."],["Accepts lower and upper percentile bounds as inputs to define the range of values for the mean calculation."]]],[]]