次の方法で共有


PredictStdev (DMX)

指定された列に対して、予測された標準偏差を返します。

構文

PredictStdev(<scalar column reference>)

適用対象

スカラ列です。

戻り値の型

<scalar column reference> で指定された型のスカラ値です。

説明

列参照が不連続の場合、不連続の値から標準偏差を計算することはできないため、PredictStdev は 0 を返します。

次の例は、自然予測結合を使用して、個人が TM Decision Tree マイニング モデルに基づいた自転車購入者である可能性を判断します。また、予測の標準偏差も判断します。

SELECT
  [Bike Buyer],
  PredictStdev([Bike Buyer]) AS [Standard Deviation]
FROM
  [TM Decision Tree]
NATURAL PREDICTION JOIN
(SELECT 28 AS [Age],
  '2-5 Miles' AS [Commute Distance],
  'Graduate Degree' AS [Education],
  0 AS [Number Cars Owned],
  0 AS [Number Children At Home]) AS t