Nothing
#' @keywords internal
.clean_up_tmp_stanreg <- function(tmp, group, cols, parms) {
tmp$Group <- group
tmp$Parameter <- rep(parms, each = nrow(tmp) / length(parms))
rownames(tmp) <- NULL
tmp <- tmp[, c("Parameter", cols)]
# clean random effects notation from parameters
# tmp$Parameter <- gsub("b\\[(.*) (.*)\\]", "\\2", tmp$Parameter)
tmp
}
#' @keywords internal
.clean_up_tmp_brms <- function(tmp, group, component, cols, parms) {
tmp$Group <- group
tmp$Component <- component
tmp$Parameter <- rep(parms, each = nrow(tmp) / length(parms))
rownames(tmp) <- NULL
tmp <- tmp[, c("Parameter", cols)]
# clean random effects notation from parameters
# tmp$Parameter <- gsub("r_(.*)\\.(.*)\\.", "\\1", tmp$Parameter)
tmp
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.