Skip to contents

Print the content of the output of many_lm().

Usage

# S3 method for class 'lm_list_lmhelprs'
print(x, ...)

Arguments

x

The output of many_lm().

...

Other arguments. Not used.

Value

x is returned invisibly. Called for its side effect.

Details

Adapted from the package manymome such that many_lm() can be used with manymome.

Examples


data(data_test1)
mod <- "x3 ~ x2 + x1
        x4 ~ x3
        x5 ~ x4*x1"
out <- many_lm(mod, data_test1)
out
#> 
#> The models:
#> x3 ~ x2 + x1
#> <environment: 0x55ae8add21f8>
#> x4 ~ x3
#> <environment: 0x55ae8add21f8>
#> x5 ~ x4 * x1
#> <environment: 0x55ae8add21f8>
#>