pibble_tidy_samples.Rd
Combines them all into a single tibble, see example for formatting and
column headers. Primarily designed to be used by
summary.pibblefit
.
pibble_tidy_samples(m, use_names = FALSE, as_factor = FALSE)
m | an object of class pibblefit |
---|---|
use_names | should dimension indices be replaced by dimension names if provided in data used to fit pibble model. |
as_factor | if use_names should names be returned as factor? |
tibble
sim <- pibble_sim() fit <- pibble(sim$Y, sim$X) fit_tidy <- pibble_tidy_samples(fit, use_names=TRUE) head(fit_tidy)#> Parameter coord sample iter val covariate coord2 #> 1 Eta log(c1/c10) s1 1 4.0607825 <NA> <NA> #> 2 Eta log(c2/c10) s1 1 4.5354002 <NA> <NA> #> 3 Eta log(c3/c10) s1 1 -3.7096270 <NA> <NA> #> 4 Eta log(c4/c10) s1 1 5.6146653 <NA> <NA> #> 5 Eta log(c5/c10) s1 1 -0.4527908 <NA> <NA> #> 6 Eta log(c6/c10) s1 1 1.1802400 <NA> <NA>