Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.Reducer.mode
Stay organized with collections
Save and categorize content based on your preferences.
Create a reducer that will compute the mode of the inputs. For small numbers of inputs (up to maxRaw) the mode will be computed directly; for larger numbers of inputs the mode will be derived from a histogram.
Usage | Returns | ee.Reducer.mode(maxBuckets, minBucketWidth, maxRaw) | Reducer |
Argument | Type | Details | 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."],[[["\u003cp\u003eThis reducer calculates the mode (most frequent value) of input data.\u003c/p\u003e\n"],["\u003cp\u003eFor small datasets, the mode is computed directly; for larger datasets, it's derived from a histogram.\u003c/p\u003e\n"],["\u003cp\u003eYou can customize the histogram creation using parameters like \u003ccode\u003emaxBuckets\u003c/code\u003e, \u003ccode\u003eminBucketWidth\u003c/code\u003e, and \u003ccode\u003emaxRaw\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# ee.Reducer.mode\n\nCreate a reducer that will compute the mode of the inputs. For small numbers of inputs (up to maxRaw) the mode will be computed directly; for larger numbers of inputs the mode will be derived from a histogram.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------------------------------------|---------|\n| `ee.Reducer.mode(`*maxBuckets* `, `*minBucketWidth* `, `*maxRaw*`)` | Reducer |\n\n| Argument | Type | Details |\n|------------------|------------------------|-----------------------------------------------------------------------------------------------------|\n| `maxBuckets` | Integer, default: null | The maximum number of buckets to use when building a histogram; will be rounded up to a power of 2. |\n| `minBucketWidth` | Float, default: null | The minimum histogram bucket width, or null to allow any power of 2. |\n| `maxRaw` | Integer, default: null | The number of values to accumulate before building the initial histogram. |"]]