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
|
\name{sm.script}
\alias{sm.script}
\title{
Running a script associated to the sm library
}
\description{
This is a utility function to run scripts, usually those associated
to the book described below.
}
\usage{
sm.script(name, path)
}
\arguments{
\item{name}{
the name of the file containing the code; a \code{.q} suffix will be appended
to the name. If \code{name} is missing, a list of the scripts associated to
the \code{sm} library will be displayed.
}
\item{path}{
the name of the path where to look for the script. If \code{path} is missing,
it is assumed to be the appropriate location for the scripts of the \code{sm}
library.
}}
\details{
This utility allows to reproduce easily the illustrations of the refernce
below, since each of them is associated to an available script.
}
\references{
Bowman, A.W. and Azzalini, A. (1997).
\emph{Applied Smoothing Techniques for Data Analysis: }
\emph{the Kernel Approach with S-Plus Illustrations.}
Oxford University Press, Oxford.
}
\seealso{
\code{\link{sm}},
}
\examples{
sm.script()
sm.script(speed)
}
\keyword{utilities}
% Converted by Sd2Rd version 1.15.
|