DM_getPredStdDev

This function returns the estimated standard deviation of a given predicted value, which has been produced by applying a Regression model. The returned value is calculated based on accuracy estimations which are part of the Regression model. These estimations have been established when the model was trained.
Note:
  1. Only Transform Regression models contain this information. For all other Regression models, function DM_getPredStdDev always returns NULL.
  2. The functions DM_getPredStdDev and DM_getPredDev are related as follows: DM_getPredDev(value,0.683) equals DM_getPredStdDev(value) because the standard deviation is the half width of the interval in which the predicted value lies with a probability of 0.683.
  3. DM_getPredStdDev is similar to DM_getPredValue, but it returns the estimated standard deviation for a predicted value (as it is estimated by the Transform Regression kernel).

Syntax

Function syntax

Read syntax diagramSkip visual syntax diagram
>>-DM_getPredStdDev--(--results value--)-----------------------><

Parameters

results value
The result of applying a Regression model, returned by the function DM_applyRegModel as data type DM_RegResult

Return value



Feedback | Information roadmap