お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Reducer.kendallsCorrelation
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Kendall の Tau-b 順位相関を計算するリデューサーを作成します。タウ値が正の場合は増加傾向、負の場合は減少傾向を示します。詳しくは、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 値のシーケンス番号が自動的に生成されます(つまり、同順位は存在しません)。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 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). |"]]