Learn R Programming

parameters (version 0.1.0)

equivalence_test.lm: Equivalence test

Description

Compte the equivalence test for frequentist models.

Usage

# S3 method for lm
equivalence_test(x, range = "default", ci = 0.95,
  verbose = TRUE, ...)

Arguments

x

A statistical model.

range

The range of practical equivalence of an effect. May be "default", to automatically define this range based on properties of the model's data.

ci

Confidence Interval (CI) level. Default to 0.95 (95%).

verbose

Toggle off warnings.

...

Arguments passed to or from other methods.

Value

A data.frame.

Examples

Run this code
# NOT RUN {
m <- lm(mpg ~ gear + wt + cyl + hp, data = mtcars)
equivalence_test(m)
# }

Run the code above in your browser using DataLab