ScottKnottESD (version 1.2.2)

"sk_esd": The Scott-Knott Effect Size Difference (ESD) Test

Description

An enhancement of the Scott-Knott test (which cluster distributions into statistically distinct ranks) that takes effect size into consideration.

Usage

sk_esd(x, alpha = 0.05, ...)

Arguments

x

A wide-format data frame.

alpha

The significance level.

...

Optional parameters.

Value

A sk_esd object.

Examples

Run this code
# NOT RUN {
sk <- sk_esd(example)
sk$original  # Original Groups
sk$groups    # Corrected Groups with effect size wise
sk$reverse   # Reversed Groups

# For a long-format data frame
long <- melt(example, id.vars=0)
data <- long2wide(long)
sk <- sk_esd(data) 

# }

Run the code above in your browser using DataLab