varNPreg: Nonparametric Variance Estimator

View source: R/varNPreg.R

varNPregR Documentation

Nonparametric Variance Estimator

Description

Estimates the error variance \sigma^2 nonparametrically in the model

Y_i = m(x_i) + E_i,

where E_i \sim (0,\sigma^2), i.i.d.

Computes leave-one-out residuals (local linear approximation followed by reweighting) and their variance.

Usage

varNPreg(x, y)

Arguments

x

abscissae values, ordered increasingly.

y

observations at y[i] at x[i].

Value

A list with components

res

numeric; residuals at x[] of length n.

snr

explained variance of the true curve

sigma2

estimation of residual variance, \hat\sigma^2.

Note

This is an R interface to the resest Fortran subroutine, used in lokerns and glkerns, see the latter's help page for references and context.

Earlier version of the lokern package accidentally contained varest() which has been an identical copy of varNPreg().

Author(s)

Martin Maechler

See Also

lokerns, glkerns.

Examples

 x <- sort(runif(100))
 y <- sin(pi*x) + rnorm(100)/10
 str(ve <- varNPreg(x,y))

lokern documentation built on April 4, 2024, 3:01 a.m.

Related to varNPreg in lokern...