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
|
\name{show-methods}
\docType{methods}
\alias{show-methods}
\alias{show,ANY-method}
\alias{show,fREG-method}
\title{Regression Modelling Show Methods}
\description{
Show methods for regression modelling.
}
\section{Methods}{
\describe{
\item{object = "ANY"}{
Generic function.
}
\item{object = "fREG"}{
Print method for objects of class 'fREG'.
}
}
}
\details{
The show or print method returns the same information for all
supported regression models through the \code{use} argument in
the function \code{regFit}.
These are the 'title', the 'formula', the 'family' and
the 'model parameters'.
}
\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")
## print -
print(fit)
}
\keyword{models}
|