Nothing
post_process_makeme_data <- function(data,
indep = NULL,
showNA = "never",
colour_2nd_binary_cat = NULL) {
if (length(indep) > 0) {
data[[indep]] <- forcats::fct_rev(data[[indep]])
}
if (dplyr::n_distinct(data$.category, na.rm = showNA == "never") == 2 &&
!is.null(colour_2nd_binary_cat)) {
data$.category <- forcats::fct_rev(data$.category)
}
data
}
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.