summary.lm_list_lmhelprs {lmhelprs}R Documentation

Summary of an lm_list_lmhelprs-Class Object

Description

The summary of content of the output of many_lm().

Usage

## S3 method for class 'lm_list_lmhelprs'
summary(object, ...)

## S3 method for class 'summary_lm_list_lmhelprs'
print(x, digits = 3, ...)

Arguments

object

The output of many_lm().

...

Other arguments. Not used.

x

An object of class summary_lm_list_lmhelprs.

digits

The number of significant digits in printing numerical results.

Value

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.

Functions

Examples


data(data_test1)
mod <- "x3 ~ x2 + x1
        x4 ~ x3
        x5 ~ x4*x1"
out <- many_lm(mod, data_test1)
summary(out)


[Package lmhelprs version 0.3.0 Index]