Skip to contents

Returns distribution statistics in a tibble.

Usage

util_paralogistic_stats_tbl(.data)

Arguments

.data

The data being passed from a tidy_ distribution function.

Value

A tibble

Details

This function will take in a tibble and returns the statistics of the given type of tidy_ distribution. It is required that data be passed from a tidy_ distribution function.

Examples

library(dplyr)

set.seed(123)
tidy_paralogistic(.n = 50, .shape = 5, .rate = 6) |>
  util_paralogistic_stats_tbl() |>
  glimpse()
#> Rows: 1
#> Columns: 17
#> $ tidy_function     <chr> "tidy_paralogistic"
#> $ function_call     <chr> "Paralogistic c(5, 6, 0.167)"
#> $ distribution      <chr> "Paralogistic"
#> $ distribution_type <chr> "Continuous"
#> $ points            <dbl> 50
#> $ simulations       <dbl> 1
#> $ mean              <dbl> 1.5
#> $ mode_lower        <dbl> 1
#> $ range             <chr> "0 to Inf"
#> $ std_dv            <dbl> 1.936492
#> $ coeff_var         <dbl> 1.290994
#> $ skewness          <dbl> 6.97137
#> $ kurtosis          <dbl> 70.8
#> $ computed_std_skew <dbl> -0.1662826
#> $ computed_std_kurt <dbl> 2.556048
#> $ ci_lo             <dbl> 0.06320272
#> $ ci_hi             <dbl> 0.1623798