summarise_posterior: Shortcut for summarize variable with quantiles and mean

View source: R/driver-utils.R

summarise_posteriorR Documentation

Shortcut for summarize variable with quantiles and mean

Description

Shortcut for summarize variable with quantiles and mean

Usage

summarise_posterior(data, var, ...)

Arguments

data

tidy data frame

var

variable name (unquoted) to be summarised

...

other expressions to pass to summarise

Details

Notation: pX refers to the X% quantile

Value

data.frame

Examples

d <- data.frame("a"=sample(1:10, 50, TRUE),
                "b"=rnorm(50))

# Summarize posterior for b over grouping of a and also calcuate
# minmum of b (in addition to normal statistics returned)
d <- dplyr::group_by(d, a)
summarise_posterior(d, b, mean.b = mean(b), min=min(b))

fido documentation built on June 22, 2024, 9:36 a.m.