| glance.adk {cmstatr} | R Documentation |
Glance at a adk (Anderson–Darling k-Sample) object
Description
Glance accepts an object of type adk and returns a
tibble::tibble() with
one row of summaries.
Glance does not do any calculations: it just gathers the results in a tibble.
Usage
## S3 method for class 'adk'
glance(x, ...)
Arguments
x |
an |
... |
Additional arguments. Not used. Included only to match generic signature. |
Value
A one-row tibble::tibble() with the following
columns:
-
alphathe significance level for the test -
nthe sample size for the test -
kthe number of samples -
sigmathe computed standard deviation of the test statistic -
adthe test statistic -
pthe p-value of the test -
reject_same_distwhether the test concludes that the samples are drawn from different populations
See Also
Examples
x <- c(rnorm(20, 100, 5), rnorm(20, 105, 6))
k <- c(rep(1, 20), rep(2, 20))
a <- ad_ksample(x = x, groups = k)
glance(a)
## A tibble: 1 x 7
## alpha n k sigma ad p reject_same_dist
## <dbl> <int> <int> <dbl> <dbl> <dbl> <lgl>
## 1 0.025 40 2 0.727 4.37 0.00487 TRUE
[Package cmstatr version 0.9.3 Index]