Skip to contents

Create a Summary of a fitted brmsfit model from a pivot_coord object

Usage

# S3 method for class 'pivot_coord'
summary(object, digits = 2, ...)

Arguments

object

An object of class pivot_coord.

digits

A integer value used for number formatting. Default is 2.

...

currently ignored.

Value

A data table of results.

Examples

# \donttest{
if(requireNamespace("cmdstanr")){
  m <- brmcoda(complr = complr(data = mcompd, sbp = sbp,
                                 parts = c("TST", "WAKE", "MVPA", "LPA", "SB"),
                                 idvar = "ID", total = 1440),
  formula = Stress ~ bilr1 + bilr2 + bilr3 + bilr4 +
    wilr1 + wilr2 + wilr3 + wilr4 + (1 | ID),
  chain = 1, iter = 500,
  backend = "cmdstanr")
  
  m_pb <- pivot_coord(m)
  summary(m_pb)
}# }
#> Error: CmdStan path has not been set yet. See ?set_cmdstan_path.