Learn R Programming

performance (version 0.8.0)

r2_xu: Xu' R2 (Omega-squared)

Description

Calculates Xu' Omega-squared value, a simple R2 equivalent for linear mixed models.

Usage

r2_xu(model)

Arguments

model

A linear (mixed) model.

Value

The R2 value.

Details

r2_xu() is a crude measure for the explained variance from linear (mixed) effects models, which is originally denoted as .

References

Xu, R. (2003). Measuring explained variation in linear mixed effects models. Statistics in Medicine, 22(22), 3527<U+2013>3541. 10.1002/sim.1572

Examples

Run this code
# NOT RUN {
model <- lm(Sepal.Length ~ Petal.Length + Species, data = iris)
r2_xu(model)
# }

Run the code above in your browser using DataLab