LOCFIT: R and S-Plus Help | ||||
predict(object, newdata, se.fit=F, ...)
The locfit function computes a local fit at a selected set
of points (as defined by the ev argument). The predict.locfit
function is used to interpolate from these points to any other points.
The method is based on cubic hermite polynomial interpolation, using the
estimates and local slopes at each fit point.
Arguments:
The motivation for this two-step procedure is computational speed. Depending on the sample size, dimension and fitting procedure, the local fitting method can be expensive, and it is desirable to keep the number of points at which the direct fit is computed to a minimum. The interpolation method used by predict.locfit() is usually much faster, and can be computed at larger numbers of points.
If se.fit=F, a numeric vector of predictors.
If se.fit=T, a list with components fit, se.fit and
residual.scale.
Examples:
data(ethanol) fit <- locfit(NOx~E,data=ethanol) predict(fit,c(0.6,0.8,1.0))
locfit
| ||||
|
Built: Thu Dec 2 16:56:05 EST 2004
Copyright © 2004, Catherine Loader locfit@herine.net | ||||