View source: R/print_lm_list.R
print.lm_list | R Documentation |
lm_list
-Class
ObjectPrint the content of the
output of lm2list()
.
## S3 method for class 'lm_list'
print(x, ...)
x |
The output of |
... |
Other arguments. Not used. |
x
is returned invisibly.
Called for its side effect.
data(data_serial_parallel)
lm_m11 <- lm(m11 ~ x + c1 + c2, data_serial_parallel)
lm_m12 <- lm(m12 ~ m11 + x + c1 + c2, data_serial_parallel)
lm_m2 <- lm(m2 ~ x + c1 + c2, data_serial_parallel)
lm_y <- lm(y ~ m11 + m12 + m2 + x + c1 + c2, data_serial_parallel)
# Join them to form a lm_list-class object
lm_serial_parallel <- lm2list(lm_m11, lm_m12, lm_m2, lm_y)
lm_serial_parallel
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.