| summary.fsr | R Documentation |
summary method for class "fsr".
## S3 method for class 'fsr'
summary(object, correlation = FALSE, ...)
## S3 method for class 'summary.fsr'
print(x, digits = max(3, getOption("digits") - 3),
signif.stars = getOption("show.signif.stars"), ...)
object, x |
an object of class |
correlation |
logical; if |
digits |
the number of significant digits to use when printing. |
signif.stars |
logical indicating if “significance stars”
should be printer, see |
... |
further arguments passed to or from other methods. |
summary.fsr(), the S3 method, simply returns an (S3) object of class "summary.fsr"
for which there's a print method:
print.summary.fsr prints summary statistics for the forward search (FS) regression estimates.
While the function print.fsr prints only the robust estimates
of the coefficients, print.summary.fsr will print also the regression table.
summary.fsr returns an summary.fsr object, whereas the
print methods returns its first argument via
invisible, as all print methods do.
fsreg, summary
## Not run:
data(Animals, package = "MASS")
brain <- Animals[c(1:24, 26:25, 27:28),]
lbrain <- log(brain)
(fs <- fsreg(brain~body, data=lbrain, method="FS"))
summary(fs)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.