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 49 50 51 52 53 54 55 56 57 58
|
\name{baseMethods}
\alias{baseMethods}
\alias{termPlot}
\alias{termPlot.default}
\alias{stdev}
\alias{stdev.default}
\title{Generic functions extensions}
\description{
Basic extensions which add and/or modify additional functionality
which is not available in R's basic packages.
}
\usage{
\method{stdev}{default}(x, na.rm = FALSE)
\method{termPlot}{default}(model, \dots)
}
\arguments{
\item{model}{
a fitted model object.
}
\item{x}{
an object for which to compute the standard deviation.
}
\item{na.rm}{
a logical value - should the NA values be removed.
}
\item{\dots}{
arguments to be passed.
}
}
\details{
\code{stdev} and \code{termPlot} are generic functions with default
methods \code{stats::sd} and \code{stats::termplot}, respectively.
}
\seealso{
\code{\link[stats]{sd}},
\code{\link[stats]{termplot}}
}
\keyword{programming}
\keyword{stats}
|