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 59 60 61 62 63 64 65 66 67 68 69 70 71
|
\name{terms-methods}
\docType{methods}
\alias{terms-methods}
\alias{terms,ANY-method}
\alias{terms,fREG-method}
\title{Regression Model Plot Methods}
\description{
Plots results obtained from a fitted regression model.
}
\usage{
\S4method{terms}{fREG}(x, \dots)
}
\arguments{
\item{x}{
an object of class 'fREG'.
}
\item{\dots}{
additional arguments to be passed to the underlying
functions.
}
}
\section{Methods}{
\describe{
\item{x = "ANY"}{
Generic function.
}
\item{x = "fREG"}{
Terms extractor function.
}
}
}
\author{
Diethelm Wuertz for the Rmetrics \R-port.
}
\examples{
## regSim -
x <- regSim(model = "LM3", n = 50)
## regFit -
fit <- regFit(Y ~ X1 + X2 + X3, data = x, use = "lm")
}
\keyword{models}
|