ee.Reducer.kendallsCorrelation
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह एक ऐसा रिड्यूसर बनाता है जो केंडल के टाउ-बी रैंक कोरिलेशन का हिसाब लगाता है. टाउ की पॉज़िटिव वैल्यू से पता चलता है कि ट्रेंड बढ़ रहा है. वहीं, नेगेटिव वैल्यू से पता चलता है कि ट्रेंड घट रहा है. ज़्यादा जानकारी के लिए, https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/org/apache/commons/math3/stat/correlation/KendallsCorrelation.html पर जाएं.
इस्तेमाल | रिटर्न |
---|
ee.Reducer.kendallsCorrelation(numInputs) | रेड्यूसर |
आर्ग्यूमेंट | टाइप | विवरण |
---|
numInputs | पूर्णांक, डिफ़ॉल्ट: 1 | इनपुट की संख्या (1 या 2). अगर 1 तय किया जाता है, तो x वैल्यू के लिए क्रम संख्याएं अपने-आप जनरेट होती हैं. इसका मतलब है कि कोई भी संख्या एक से ज़्यादा बार नहीं हो सकती. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eComputes the Kendall's Tau-b rank correlation, indicating increasing trends with positive values and decreasing trends with negative values.\u003c/p\u003e\n"],["\u003cp\u003eProvides a reducer that can be used with one or two inputs, automatically generating sequence numbers for the x value when only one input is provided.\u003c/p\u003e\n"],["\u003cp\u003eOffers flexibility for analysis by allowing users to specify the number of inputs, accommodating scenarios with or without ties in the x values.\u003c/p\u003e\n"],["\u003cp\u003eBuilt upon the Apache Commons Math library, ensuring reliable and robust correlation calculations based on established statistical methods.\u003c/p\u003e\n"],["\u003cp\u003eEnables the identification of monotonic relationships between variables in Earth Engine, facilitating insights into data patterns and trends.\u003c/p\u003e\n"]]],["This content describes a reducer that calculates Kendall's Tau-b rank correlation. It returns a reducer object and expects one or two numerical inputs. If only one input is provided, the reducer generates sequence numbers for the x-values, ensuring no ties. The output indicates trend direction: positive tau suggests an increasing trend, while negative tau indicates a decreasing one. The `numInputs` argument defines the expected number of inputs, defaulting to one.\n"],null,["# ee.Reducer.kendallsCorrelation\n\nCreates a reducer that computes the Kendall's Tau-b rank correlation. A positive tau value indicates an increasing trend; negative value indicates a decreasing trend. See https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/org/apache/commons/math3/stat/correlation/KendallsCorrelation.html for details.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------|---------|\n| `ee.Reducer.kendallsCorrelation(`*numInputs*`)` | Reducer |\n\n| Argument | Type | Details |\n|-------------|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `numInputs` | Integer, default: 1 | The number of inputs to expect (1 or 2). If 1 is specified, automatically generates sequence numbers for the x value (meaning there can be no ties). |"]]