distance.randtest {dispRity} | R Documentation |
Randtest distance
Description
Measures the distance between the observed statistic from a "randtest"
object and some specific quantile of the simulated data.
Usage
distance.randtest(xtest, quantile = c(0.025, 0.975), abs = FALSE)
Arguments
xtest |
an object of class |
quantile |
a |
abs |
|
Details
To compare the observed value to the simulated median value, you can use quantile = 0.5
.
Also note that when using abs = FALSE
(default), a negative value means that the observed statistic is within the request quantiles.
Author(s)
Thomas Guillerme
See Also
Examples
## Simple example
dummy_matrix <- matrix(rnorm(500), 100, 5)
## Testing whether the mean of a random subset
## is different than the means of 100 subsets
dummy_test <- randtest.dispRity(dummy_matrix,
subset = sample(1:100, 20),
metric = mean)
dummy_test ; plot(dummy_test)
## The distance between the observed data and the 95% quantile
distance.randtest(dummy_test)
## The absolute distance from the median
distance.randtest(dummy_test, quantile = 0.5, abs = TRUE)
[Package dispRity version 1.8 Index]