View source: R/wilcoxonOneSampleR.r
wilcoxonOneSampleR | R Documentation |
Calculates r effect size for a Wilcoxon one-sample signed-rank test; confidence intervals by bootstrap.
wilcoxonOneSampleR(
x,
mu = NULL,
adjustn = TRUE,
coin = FALSE,
ci = FALSE,
conf = 0.95,
type = "perc",
R = 1000,
histogram = FALSE,
digits = 3,
...
)
x |
A vector of observations. |
mu |
The value to compare |
adjustn |
If |
coin |
If |
ci |
If |
conf |
The level for the confidence interval. |
type |
The type of confidence interval to use.
Can be any of " |
R |
The number of replications to use for bootstrap. |
histogram |
If |
digits |
The number of significant digits in the output. |
... |
Additional arguments passed to the |
r is calculated as Z divided by square root of the number of observations.
The calculated statistic is equivalent to the statistic returned
by the wilcoxPairedR
function with one group equal
to a vector of mu
.
The author knows of no reference for this technique.
This statistic typically reports a smaller effect size
(in absolute value) than does
the matched-pairs rank biserial correlation coefficient
(wilcoxonOneSampleRC
), and may not reach a value
of -1 or 1 if there are values tied with mu
.
Currently, the function makes no provisions for NA
values in the data. It is recommended that NA
s be removed
beforehand.
When the data are greater than mu
, r is positive.
When the data are less than mu
, r is negative.
When r is close to extremes, or with small counts in some cells, the confidence intervals determined by this method may not be reliable, or the procedure may fail.
A single statistic, r. Or a small data frame consisting of r, and the lower and upper confidence limits.
My thanks to
Peter Stikker for the suggestion to adjust the sample size
for ties with mu
.
Salvatore Mangiafico, mangiafico@njaes.rutgers.edu
https://rcompanion.org/handbook/F_02.html
X = c(1,2,3,3,3,3,4,4,4,4,4,5,5,5,5,5)
wilcox.test(X, mu=3, exact=FALSE)
wilcoxonOneSampleR(X, mu=3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.