Rev 25118 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{loess.control}\title{Set Parameters for Loess}\usage{loess.control(surface = c("interpolate", "direct"),statistics = c("approximate", "exact"),trace.hat = c("exact", "approximate"),cell = 0.2, iterations = 4, \dots)}\alias{loess.control}\arguments{\item{surface}{should be fitted surface be computed exactly or viainterpolation from a kd tree?}\item{statistics}{should the statistics be computed exactly orapproximately? Exact computation can be very slow.}\item{trace.hat}{should the trace of the smoother matrix be computedexactly or approximately? It is recommended to use the approximationfor more than about 1000 data points.}\item{cell}{if interpolation is used this controls the accuracy of theapproximation via the maximum number of points in a cell in the kdtree. Cells with more than \code{floor(n*span*cell)} points are subdivided.}\item{iterations}{the number of iterations used in robust fitting.}\item{\dots}{further arguments which are ignored.}}\description{Set control parameters for \code{loess} fits.}\value{A list with components\item{surface}{}\item{statistics}{}\item{trace.hat}{}\item{cell}{}\item{iterations}{}with meanings as explained under \sQuote{Arguments}.}\seealso{\code{\link{loess}}}\keyword{smooth}\keyword{loess}