Learn R Programming

psycho (version 0.4.91)

analyze.lm: Analyze lm objects.

Description

Analyze lm objects.

Usage

# S3 method for lm
analyze(x, CI = 95, effsize_rules = "cohen1988", ...)

Arguments

x

lm object.

CI

Confidence interval bounds. Set to NULL turn off their computation.

effsize_rules

Grid for effect size interpretation. See interpret_d.

...

Arguments passed to or from other methods.

Value

output

Examples

Run this code
# NOT RUN {
library(psycho)
fit <- lm(Sepal.Length ~ Sepal.Width, data = iris)
fit <- lm(Sepal.Length ~ Sepal.Width * Species, data = iris)

results <- analyze(fit)
summary(results)
print(results)
# }

Run the code above in your browser using DataLab