mannwhitney_interpret: Mann-Whitney U Test with Plain-English Interpretation

View source: R/nonparam_interpret.R

mannwhitney_interpretR Documentation

Mann-Whitney U Test with Plain-English Interpretation

Description

Mann-Whitney U Test with Plain-English Interpretation

Usage

mannwhitney_interpret(x, y, conf.level = 0.95, var_name = "Variable")

Arguments

x

A numeric vector (group 1)

y

A numeric vector (group 2)

conf.level

Confidence level. Default 0.95.

var_name

Optional label for the report. Default "Variable"

Value

An object of class statease_mannwhitney containing test results and interpretation. Use print() to display the formatted report.

Examples

x <- c(23, 45, 12, 67, 34, 89, 56)
y <- c(19, 38, 22, 51, 29, 74, 44)
result <- mannwhitney_interpret(x, y)
print(result)

statease documentation built on June 7, 2026, 5:06 p.m.