Learn R Programming

mlmpower (version 1.0.11)

print.mp_effsize: Prints a mp_effsize

Description

Prints a mp_effsize in a human readable format.

Usage

# S3 method for mp_effsize
print(x, ...)

Value

Invisibly returns the original variable.

Arguments

x

a mp_effsize.

...

other arguments not used by this method.

Examples

Run this code
model <- (
    outcome('Y')
    + within_predictor('X')
    + effect_size(
        icc = c(0.1, 0.2),
        within = 0.3
    )
)
# Print effect size only
print(model$effect_size)

Run the code above in your browser using DataLab