glance.anderson_darling {cmstatr}R Documentation

Glance at an anderson_darling object

Description

Glance accepts an object of type anderson_darling 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 'anderson_darling'
glance(x, ...)

Arguments

x

an anderson_darling object

...

Additional arguments. Not used. Included only to match generic signature.

Value

A one-row tibble::tibble() with the following columns:

See Also

anderson_darling()

Examples

x <- rnorm(100, 100, 4)
ad <- anderson_darling_weibull(x = x)
glance(ad)

## # A tibble: 1 x 6
##   dist        n     A        osl alpha reject_distribution
##   <chr>   <int> <dbl>      <dbl> <dbl> <lgl>
## 1 Weibull   100  2.62 0.00000207  0.05 TRUE


[Package cmstatr version 0.9.3 Index]