mse {nima}R Documentation

Mean Squared Error

Description

Compute the mean squared error (risk under L2 loss).

Usage

mse(prediction, outcome)

Arguments

prediction

A numeric vector of predictions.

outcome

A numeric vector of outcomes actually observed.

Examples

x <- rnorm(100)
y <- x^2
test_x <- rnorm(100)
test_y <- test_x^2
mod <- glm(y ~ x)
pred <- predict(mod, newx = as.data.frame(test_x))
error <- mse(prediction = pred, outcome = test_y)

[Package nima version 0.6.2 Index]