View source: R/summary_lm_list_helprs.R
summary.lm_list_lmhelprs | R Documentation |
lm_list_lmhelprs
-Class
ObjectThe summary of content
of the output of many_lm()
.
## S3 method for class 'lm_list_lmhelprs'
summary(object, ...)
## S3 method for class 'summary_lm_list_lmhelprs'
print(x, digits = 3, ...)
object |
The output of
|
... |
Other arguments. Not used. |
x |
An object of class
|
digits |
The number of significant digits in printing numerical results. |
summary.lm_list_lmhelprs()
returns a
summary_lm_list_lmhelprs
-class object, which
is a list of the summary()
outputs
of the lm()
outputs stored.
print.summary_lm_list_lmhelprs()
returns x
invisibly. Called for its side
effect.
Adapted from the package manymome
such that many_lm()
can be used
without manymome
.
print(summary_lm_list_lmhelprs)
: Print
method for output of summary for
lm_list_lmhelprs.
data(data_test1)
mod <- "x3 ~ x2 + x1
x4 ~ x3
x5 ~ x4*x1"
out <- many_lm(mod, data_test1)
summary(out)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.