View source: R/nonparam_interpret.R
| wilcoxon_interpret | R Documentation |
Wilcoxon Signed Rank Test with Plain-English Interpretation
wilcoxon_interpret(x, y, conf.level = 0.95, var_name = "Variable")
x |
A numeric vector (first measurement) |
y |
A numeric vector (second measurement) |
conf.level |
Confidence level. Default 0.95. |
var_name |
Optional label for the report. Default "Variable" |
An object of class statease_wilcoxon containing
test results and interpretation. Use print() to display
the formatted report.
x <- c(23, 45, 12, 67, 34, 89, 56)
y <- c(19, 38, 22, 51, 29, 74, 44)
result <- wilcoxon_interpret(x, y)
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.