Skip to contents

Combines them all into a single tibble, see example for formatting and column headers. Primarily designed to be used by summary.pibblefit.

Usage

pibble_tidy_samples(m, use_names = FALSE, as_factor = FALSE)

Arguments

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?

Value

tibble

Examples

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.0013368      <NA>   <NA>
#> 2       Eta log(c2/c10)     s1    1  4.4815366      <NA>   <NA>
#> 3       Eta log(c3/c10)     s1    1 -4.5190168      <NA>   <NA>
#> 4       Eta log(c4/c10)     s1    1  5.5778501      <NA>   <NA>
#> 5       Eta log(c5/c10)     s1    1 -0.2490657      <NA>   <NA>
#> 6       Eta log(c6/c10)     s1    1  1.1799901      <NA>   <NA>