Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.53 KB

predictvariance-dmx.md

File metadata and controls

56 lines (44 loc) · 1.53 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic ms.custom
PredictVariance (DMX)
PredictVariance (DMX)
minewiskan
owend
owend
02/17/2022
sql
analysis-services
reference
dmx

PredictVariance (DMX)

[!INCLUDEssas]

Returns the variance of a specified column.

Syntax

  
PredictVariance(<scalar column reference>)  

Applies To

A scalar column.

Return Type

A scalar value of the type that is specified by <scalar column reference>.

Remarks

If the column reference is discrete, PredictVariance returns 0 because the variance cannot be calculated from discrete values.

Examples

The following example uses a natural prediction join to determine if an individual is likely to be a bike buyer based on the TM Decision Tree mining model, and also determines the variance for the prediction.

SELECT  
  [Bike Buyer],  
  PredictVariance([Bike Buyer]) AS [Variance]  
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  

See Also

Data Mining Extensions (DMX) Function Reference
Functions (DMX)
General Prediction Functions (DMX)