cv.lo2: Cross-validating Loess curve

Description Usage Arguments Value Author(s)

Description

Function provides the cross-validation error for the loess curve in a manner that is amenable to optimization of the span.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## S3 method for class 'lo2'
cv(
  span,
  form,
  data,
  cost = function(y, yhat) mean((y - yhat)^2, na.rm = TRUE),
  K = n,
  numiter = 100,
  which = c("corrected", "raw")
)

Arguments

span

The span of the loess smoother.

form

The formula that identifies the model

data

A data frame containing the required variables.

cost

Cost function to be passed down to loess.

K

Number of folds for the cross-validation

numiter

Number of times over which the cv error will be aggregated

which

Return raw or corrected cv error

Value

The cross-validation error from the loess curve.

Author(s)

Dave Armstrong


DAMisc documentation built on Jan. 12, 2022, 1:07 a.m.