as.data.frame.walker_fit {walker} | R Documentation |
Coerce Posterior Samples of walker Fit to a Data Frame
Description
Creates a data.frame object from the output of walker fit.
Usage
## S3 method for class 'walker_fit'
as.data.frame(x, row.names = NULL, optional = FALSE, type, ...)
Arguments
x |
An output from |
row.names |
|
optional |
Ignored (part of generic |
type |
Either |
... |
Ignored. |
Examples
## Not run:
as.data.frame(fit, "tiv") %>%
group_by(variable) %>%
summarise(mean = mean(value),
lwr = quantile(value, 0.05),
upr = quantile(value, 0.95))
## End(Not run)
[Package walker version 1.0.10 Index]