Print fitted model objects and summaries.
# S3 method for ssn_lm
print(x, digits = max(3L, getOption("digits") - 3L), ...)
# S3 method for ssn_glm
print(x, digits = max(3L, getOption("digits") - 3L), ...)
# S3 method for summary.ssn_lm
print(
x,
digits = max(3L, getOption("digits") - 3L),
signif.stars = getOption("show.signif.stars"),
...
)
# S3 method for summary.ssn_glm
print(
x,
digits = max(3L, getOption("digits") - 3L),
signif.stars = getOption("show.signif.stars"),
...
)
# S3 method for anova.ssn_lm
print(
x,
digits = max(getOption("digits") - 2L, 3L),
signif.stars = getOption("show.signif.stars"),
...
)
# S3 method for anova.ssn_glm
print(
x,
digits = max(getOption("digits") - 2L, 3L),
signif.stars = getOption("show.signif.stars"),
...
)A fitted model object from ssn_lm(), a fitted model object from ssn_glm(),
or output from summary(x) or or anova(x).
The number of significant digits to use when printing.
Other arguments passed to or from other methods.
Logical. If TRUE, significance stars are printed for each coefficient
Printed fitted model objects and summaries with formatting.