print.summary.asm: Print summary of the 'asm' regression model

print.summary.asmR Documentation

Print summary of the asm regression model

Description

Prints the summary of a fitted asm regression model

Usage

## S3 method for class 'summary.asm'
print(
  x,
  digits = max(3L, getOption("digits") - 3L),
  signif.stars = getOption("show.signif.stars"),
  concise = FALSE,
  ...
)

Arguments

x

summary.asm object

digits

number of digits to print

signif.stars

logical; if TRUE, 'significance stars' are printed

concise

logical; if TRUE, the output is concise

...

additional arguments to ensure compatibility with the generic function print()

Value

No return value

Examples

model = asm(mpg ~ cyl + hp + disp, data=mtcars)
print(summary(model))


asm documentation built on April 12, 2025, 1:41 a.m.

Related to print.summary.asm in asm...