devianceNormal: Function to calculate deviance for model predictions assuming...

Description Usage Arguments Value Author(s) Examples

View source: R/devianceNormal.R

Description

This function calculates a deviance measure for model predictions assuming a Normal distribution.

Usage

1
devianceNormal(Y, Y_hat)

Arguments

Y

a numeric vector of observations.

Y_hat

a numeric vector of predictions for Y (must have same length as Y.)

Value

a numeric vector.

Author(s)

Edwin Graham <edwingraham1984@gmail.com>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# n <- 1000
# 
# true <- rnorm(n)
# observed <- rnorm(n, true, sd=0.1)
# predicted <- true/2 + rnorm(n, sd=0.2)
# 
# plot(observed, predicted)
# 
# devs <- devianceNormal(observed, predicted)
# sum(devs)

EdwinGraham/EdNet documentation built on May 6, 2019, 12:22 p.m.