Learn R Programming

lmhelprs (version 0.4.0)

summary.lm_list_lmhelprs: Summary of an lm_list_lmhelprs-Class Object

Description

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

Usage

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

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

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.

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.

Functions

  • print(summary_lm_list_lmhelprs): Print method for output of summary for lm_list_lmhelprs.

Examples

Run this code

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

Run the code above in your browser using DataLab