Nothing
#' Helper to turn off faceting for dummy grouping
#' @keywords internal
#' @noRd
.no_dummy_labels <- function(group, facetGroups) {
if (all(group == "dummyGroup")) {
facetGroups <- FALSE
}
return(facetGroups)
}
#' Helper for plotting changepoint models
#' @keywords internal
#' @noRd
inv_logit <- function(x) {
return(1 / (1 + exp(-x)))
}
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.