View source: R/oneSampleDominance.r
oneSampleDominance | R Documentation |
Calculates a dominance effect size statistic compared with a theoretical median for one-sample data with confidence intervals by bootstrap
oneSampleDominance(
x,
mu = 0,
ci = FALSE,
conf = 0.95,
type = "perc",
R = 1000,
histogram = FALSE,
digits = 3,
na.rm = TRUE,
...
)
x |
A vector of numeric values. |
mu |
The median against which to compare the values. |
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. |
na.rm |
If |
... |
Additional arguments. |
The calculated Dominance
statistic is simply
the proportion of observations greater than mu
minus the
the proportion of observations less than mu
.
It will range from -1 to 1, with 0 indicating that the median is
equal to mu
,
and 1 indicating that the observations are all greater in value
than mu
,
and -1 indicating that the observations are all less in value
than mu
.
This statistic is appropriate for truly ordinal data, and could be considered an effect size statistic for a one-sample sign test.
Ordered category data need to re-coded as
numeric, e.g. as with as.numeric(Ordinal.variable)
.
When the statistic is close to 1 or close to -1, or with small sample size, the confidence intervals determined by this method may not be reliable, or the procedure may fail.
VDA is the analogous statistic, converted to a probability,
ranging from 0 to 1, specifically,
VDA = Dominance / 2 + 0.5
.
A small data frame consisting of descriptive statistics, the dominance statistic, and potentially the lower and upper confidence limits.
Salvatore Mangiafico, mangiafico@njaes.rutgers.edu
https://rcompanion.org/handbook/F_03.html
pairedSampleDominance
,
cliffDelta
,
vda
data(Catbus)
library(DescTools)
SignTest(Catbus$Rating, mu=5.5)
oneSampleDominance(Catbus$Rating, mu=5.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.