calc_CrIs | R Documentation |
Adds symmetric credible intervals based on quantiles.
calc_CrIs(samples, summarise_by = NULL, CrIs = c(0.2, 0.5, 0.9))
samples |
A data.table containing at least a value variable |
summarise_by |
A character vector of variables to group by. |
CrIs |
Numeric vector of credible intervals to calculate. |
A data.table containing the summarise_by
variables and the
specified lower and upper credible intervals.
samples <- data.frame(value = 1:10, type = "car")
# add credible intervals
calc_CrIs(samples)
# add 90% credible interval grouped by type
calc_CrIs(samples, summarise_by = "type")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.