sse: Sum of Square Errors

Description Usage Arguments Value Examples

Description

Compute the sum of squared prediction errors (or residual sum of squares) when a linear model is applied to a dataset.

Usage

1
sse(b, dataset)

Arguments

b

vector or column-matrix of regression coefficients

dataset

a matrix or dataframe. The final column is the outcome variable.

Value

The function returns the sum of square errors.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Using simulated data derived from the iris dataset
mu <- c(rep(0, 4))
covmatr <- matrix(c(0.7, -0.04, 1.3, 0.5, -0.04, 0.2, -0.3, -0.1,
1.3, -0.3, 3.1, 1.3, 0.5, -0.1, 1.3, 0.6), ncol = 4)
sim.dat <- randnor(n = 100, mu = mu, Cov = covmatr)
sim.dat <- cbind(1, sim.dat)
## resample and fit an ordinary least squares model, and then
## calculate the sum of square errors of the model when applied
## to the original data
sim.boot <- randboot(sim.dat, replace = TRUE)
boot.betas <- ols.rgr(sim.boot)
sse(b = boot.betas, dataset = sim.dat)

Example output

         [,1]
[1,] 2.450428

apricom documentation built on May 2, 2019, 6:21 a.m.

Related to sse in apricom...