print.draws_summary {posterior} | R Documentation |
Print summaries of draws
objects
Description
Print output from summarise_draws()
.
Usage
## S3 method for class 'draws_summary'
print(x, ..., num_args = NULL)
Arguments
x |
(draws_summary) A |
... |
Additional arguments passed to |
num_args |
(named list) Optional arguments passed to
num() for pretty printing of summaries. If |
Value
An invisible version of the input object.
Examples
x <- example_draws("eight_schools")
# adjust how summaries are printed when calling summarise_draws()...
summarise_draws(x, .num_args = list(sigfig = 2, notation = "dec"))
# ... or when printing
s <- summarise_draws(x)
print(s, num_args = list(sigfig = 2, notation = "dec"))
print(s, num_args = list(digits = 3))
[Package posterior version 1.6.0 Index]