Stay organized with collectionsSave and categorize content based on your preferences.
Creates a two-input reducer that computes the Sen's slope estimator. The inputs are expected to be x data followed by y data. It returns two double values; the estimated slope and the offset.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-13 UTC."],[[["\u003cp\u003eThis reducer calculates the Sen's slope, a statistical measure of trend, from two input datasets representing x and y values.\u003c/p\u003e\n"],["\u003cp\u003eIt returns two values: the estimated slope indicating the trend's direction and magnitude, and an offset value.\u003c/p\u003e\n"],["\u003cp\u003eThe reducer is specifically designed for Earth Engine and is accessed using \u003ccode\u003eee.Reducer.sensSlope()\u003c/code\u003e.\u003c/p\u003e\n"]]],["This reducer calculates Sen's slope estimator from two input datasets, x and y. It computes both the estimated slope and the offset. The `ee.Reducer.sensSlope()` function is used to create this reducer, which returns a reducer object. The process requires no arguments during instantiation. The resulting reducer outputs two double values representing the estimated slope and the offset respectively.\n"],null,["# ee.Reducer.sensSlope\n\nCreates a two-input reducer that computes the Sen's slope estimator. The inputs are expected to be x data followed by y data. It returns two double values; the estimated slope and the offset.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------|---------|\n| `ee.Reducer.sensSlope()` | Reducer |\n\n**No arguments.**"]]