#' @rdname export
#' @export
export.sc_pem <- function(object,
caption = NA,
footnote = NA,
filename = NA,
kable_styling_options = list(),
kable_options = list(),
round = 2,
...) {
kable_options <- .join_kabel(kable_options)
kable_styling_options <- .join_kabel_styling(kable_styling_options)
if (is.na(caption)) caption <- c("Percent Exceeding the Median")
object$PEM <- round_numeric(object$PEM, round)
table <- .create_table(
object$PEM,
kable_options,
kable_styling_options,
caption = caption,
footnote = footnote,
...
)
# finish ------------------------------------------------------------------
if (!is.na(filename)) .save_export(table, filename)
table
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.