1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
\name{spasm.construct}
\alias{spasm.construct}
\alias{spasm.sp}
\alias{spasm.smooth}
%- Also NEED an `\alias' for EACH other topic documented here.
\title{Experimental sparse smoothers}
\description{These are experimental sparse smoothing functions, and should
be left well alone!
}
\usage{
spasm.construct(object,data)
spasm.sp(object,sp,w=rep(1,object$nobs),get.trH=TRUE,block=0,centre=FALSE)
spasm.smooth(object,X,residual=FALSE,block=0)
}
%- maybe also `usage' for other objects documented here.
\arguments{
\item{object}{sparse smooth object}
\item{data}{data frame}
\item{sp}{smoothing parameter value}
\item{w}{optional weights}
\item{get.trH}{Should (estimated) trace of sparse smoother matrix be returned}
\item{block}{index of block, 0 for all blocks}
\item{centre}{should sparse smooth be centred?}
\item{X}{what to smooth}
\item{residual}{apply residual operation?}
}
%\value{}
%\details{}
%\references{}
\author{Simon N. Wood \email{simon.wood@r-project.org}}
%\seealso{}
\section{WARNING}{It is not recommended to use these yet}
%\examples{}
\keyword{models} \keyword{smooth} \keyword{regression}%-- one or more ...
|