$percentile(集計)
定義
$percentile
バージョン 7.0 で追加。
指定されたパーセンタイル値に対応するスカラー値の配列を返します。
は、
$percentile
ステージの$group
アキュムレータ として、または 集計式 として使用できます。
構文
$percentile
の構文は次のとおりです。
{ $percentile: { input: <expression>, p: [ <expression1>, <expression2>, ... ], method: <string> } }
コマンドフィールド
$percentile
は、次のフィールドがあります。
フィールド | タイプ | 必要性 | 説明 |
---|---|---|---|
input | 式 | 必須 | $percentile は、このデータの パーセンタイル 値を計算します。 input は、フィールド名または数値型に評価される式である必要があります。 式を数値型に変換できない場合、 $percentile 計算はそれを無視します。 |
p | 式 | 必須 |
|
method | 文字列 | 必須 | mongod がパーセンタイル値を計算するのに使用する方法。 メソッドは'approximate' である必要があります。 |
動作
$percentile
は次の場所で使用できます。
$group
アキュムレータとしての ステージ$setWindowFields
アキュムレータとしての ステージ$project
集計式としての ステージ
$percentile
は、アキュムレータとして次の特性があります。
ステージ内のすべてのドキュメントに対して単一の結果を計算します。
t ダイジェスト を使用します 近似パーセンタイルに基づくメトリクスを計算するアルゴリズム。
近似メソッドを使用して、大規模なデータをスケーリングします。
$percentile
集計式として次の特性があります。
入力として配列を受け入れ
入力ドキュメントごとに個別の結果を計算
操作タイプ
$group
ステージでは、 $percentile
はアキュムレータで、ウィンドウ内のすべてのドキュメントの 値を計算します。
$project
ステージでは、 $percentile
は 集計式 であり、各ドキュメントの値を計算します。
$setWindowFields
ステージでは、 $percentile
は集計式のように各ドキュメントの結果を返しますが、結果はアキュムレータのようにドキュメントをグループ化して計算されます。
計算に関する考慮事項
$group
ステージでは、 $percentile
は常に近似計算方法を使用します。
$project
ステージでは、近似方法が指定されている場合でも、 $percentile
は 離散計算方法 を使用する場合があります。
$setWindowFields
ステージでは、 $percentile
が使用する計算方法はワークロードによって決まります。
$percentile
が返す計算パーセンタイルは、同じデータセットでも異なる場合があります。 これは、このアルゴリズムが近似値を計算するためです。
重複するサンプルはあいまいさを引き起こす可能性があります。 重複が多数ある場合、パーセンタイル値は実際のサンプル分布を表さない可能性があります。 すべてのサンプルが同じデータセットを考えてみましょう。 データセット内のすべての値は、任意のパーセンタイル以下になります。 「50 パーセンタイル」値は、実際にはサンプルの 0 または 100% のいずれかを表します。
$percentile
はp = 0.0
の最小値を返します。
$percentile
はp = 1.0
の最大値を返します。
配列入力
$project
ステージで集計式として$percentile
を使用する場合は、配列を入力として使用できます。 構文は次のとおりです。
{ $percentile: { input: [ <expression1, <expression2>, .., <expressionN> ], p: [ <expression1>, <expression2>, ... ], method: <string> } }
ウィンドウ関数
ウィンドウ関数を使用すると、横にあるドキュメントの移動する「ウィンドウ」にわたる結果を計算できます。 各ドキュメントがパイプラインを通過する際、 $setWindowFields
ステージは次のことを行います。
現在のウィンドウ内のドキュメントセットを再計算する
セット内のすべてのドキュメントの 値を計算します
は、そのドキュメントの単一の値を返します
$setWindowFields
ステージで$percentile
を使用して、時系列やその他の関連データのローリング統計を計算できます。
$setWindowField
ステージで$percentile
を使用する場合、 input
値はフィールド名である必要があります。 フィールド名ではなく配列を入力すると、操作は失敗します。
例
次の例では testScores
コレクションを使用します。コレクションを作成します。
db.testScores.insertMany( [ { studentId: "2345", test01: 62, test02: 81, test03: 80 }, { studentId: "2356", test01: 60, test02: 83, test03: 79 }, { studentId: "2358", test01: 67, test02: 82, test03: 78 }, { studentId: "2367", test01: 64, test02: 72, test03: 77 }, { studentId: "2369", test01: 60, test02: 53, test03: 72 } ] )
アキュムレータとして単一の値を計算
単一のパーセンタイル値を計算するアキュムレータを作成します。
db.testScores.aggregate( [ { $group: { _id: null, test01_percentiles: { $percentile: { input: "$test01", p: [ 0.95 ], method: 'approximate' } }, } } ] )
出力:
{ _id: null, test01_percentiles: [ 67 ] }
_id
フィールドの値はnull
であるため、 $group
はコレクション内のすべてのドキュメントを選択します。
percentile
アキュムレータはtest01
フィールドから入力データを取得します。
この例では、パーセンタイル配列であるp
の値が 1 つあるため、 $percentile
演算子はtest01
データに対して 1 つのタームのみを計算します。 95 パーセンタイル値は67
です。
アキュムレータとして複数の値を計算
複数のパーセンタイル値を計算するアキュムレータを作成します。
db.testScores.aggregate( [ { $group: { _id: null, test01_percentiles: { $percentile: { input: "$test01", p: [ 0.5, 0.75, 0.9, 0.95 ], method: 'approximate' } }, test02_percentiles: { $percentile: { input: "$test02", p: [ 0.5, 0.75, 0.9, 0.95 ], method: 'approximate' } }, test03_percentiles: { $percentile: { input: "$test03", p: [ 0.5, 0.75, 0.9, 0.95 ], method: 'approximate' } }, test03_percent_alt: { $percentile: { input: "$test03", p: [ 0.9, 0.5, 0.75, 0.95 ], method: 'approximate' } }, } } ] )
出力:
{ _id: null, test01_percentiles: [ 62, 64, 67, 67 ], test02_percentiles: [ 81, 82, 83, 83 ], test03_percentiles: [ 78, 79, 80, 80 ], test03_percent_alt: [ 80, 78, 79, 80 ] }
_id
フィールドの値はnull
であるため、 $group
はコレクション内のすべてのドキュメントを選択します。
percentile
アキュムレータは、 test01
、 test02
、 test03
の 3 つのフィールドの値を計算します。
アキュムレータは、各入力フィールドに対して 50、75、90、95 パーセンタイル値を計算します。
パーセンタイル値は、 p
の要素と同じ順序で返されます。 test03_percentiles
とtest03_percent_alt
の値は同じですが、その順序は異なります。 各結果配列内の要素の順序は、 p
内の要素の対応する順序と一致します。
ステージでの の使用$percentile
$project
$project
ステージでは、 $percentile
は 集計式 であり、各ドキュメントの値を計算します。
$project
ステージでは、フィールド名または配列を入力として使用できます。
db.testScores.aggregate( [ { $project: { _id: 0, studentId: 1, testPercentiles: { $percentile: { input: [ "$test01", "$test02", "$test03" ], p: [ 0.5, 0.95 ], method: 'approximate' } } } } ] )
出力:
{ studentId: '2345', testPercentiles: [ 80, 81 ] }, { studentId: '2356', testPercentiles: [ 79, 83 ] }, { studentId: '2358', testPercentiles: [ 78, 82 ] }, { studentId: '2367', testPercentiles: [ 72, 77 ] }, { studentId: '2369', testPercentiles: [ 60, 72 ] }
$percentile
が集計式の場合、各studentId
の結果が存在します。
ステージでの の使用$percentile
$setWindowField
ローカルデータの傾向に基づいてパーセンタイル値を演算するには、 $setWindowField
集計パイプライン ステージで$percentile
を使用します。
この例では、スコアをフィルタリングするウィンドウを作成します。
db.testScores.aggregate( [ { $setWindowFields: { sortBy: { test01: 1 }, output: { test01_95percentile: { $percentile: { input: "$test01", p: [ 0.95 ], method: 'approximate' }, window: { range: [ -3, 3 ] } } } } }, { $project: { _id: 0, studentId: 1, test01_95percentile: 1 } } ] )
出力:
{ studentId: '2356', test01_95percentile: [ 62 ] }, { studentId: '2369', test01_95percentile: [ 62 ] }, { studentId: '2345', test01_95percentile: [ 64 ] }, { studentId: '2367', test01_95percentile: [ 67 ] }, { studentId: '2358', test01_95percentile: [ 67 ] }
この例では、各ドキュメントのパーセンタイル計算には、その前後の 3 つのドキュメントのデータも含まれています。
詳細
$median
演算子は、固定値p: [ 0.5 ]
を使用する$percentile
演算子の特殊なケースです。
ウィンドウ関数の詳細については、 $setWindowFields
を参照してください。