pivot_coord_rotate | R Documentation |
Estimate pivot balance coordinates by rotating sequential binary partition.
pivot_coord_rotate(object, summary = TRUE, ...)
object |
An object of class |
summary |
Should summary statistics be returned instead of the raw values? Default is |
... |
currently ignored. |
A list of brmcoda
for each pivot balance coordinate.
if(requireNamespace("cmdstanr")){
cilr <- complr(data = mcompd, sbp = sbp,
parts = c("TST", "WAKE", "MVPA", "LPA", "SB"), idvar = "ID",
total = 1440)
m <- brmcoda(complr = cilr,
formula = Stress ~ bilr1 + bilr2 + bilr3 + bilr4 +
wilr1 + wilr2 + wilr3 + wilr4 + (1 | ID),
chain = 1, iter = 500,
backend = "cmdstanr")
m_pivot_coord_rotate <- pivot_coord_rotate(m)
summary(m_pivot_coord_rotate)
m_pivot_coord_raw <- pivot_coord_rotate(m, summary = FALSE)
posterior::summarise_draws(posterior::as_draws_array(m_pivot_coord_raw$output))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.