Nothing
#' Print Method for Objects of Class \dQuote{stby}
#'
#' Displays a list comprised of summarytools objects created with \code{stby}.
#'
#' @usage
#' \method{print}{stby}(x, method = "pander", file = "",
#' append = FALSE, report.title = NA, table.classes = NA,
#' bootstrap.css = st_options('bootstrap.css'),
#' custom.css = st_options('custom.css'), silent = FALSE,
#' footnote = st_options('footnote'),
#' escape.pipe = st_options('escape.pipe'), \dots)
#'
#' @inheritParams print.summarytools
#' @method print stby
#' @export
print.stby <- function(x,
method = "pander",
file = "",
append = FALSE,
report.title = NA,
table.classes = NA,
bootstrap.css = st_options("bootstrap.css"),
custom.css = st_options("custom.css"),
silent = FALSE,
footnote = st_options("footnote"),
escape.pipe = st_options("escape.pipe"),
...) {
if (!"silent" %in% names(match.call())) {
silent <- switch(attr(x[[1]], "st_type"),
descr = st_options("descr.silent"),
dfSummary = st_options("dfSummary.silent"),
FALSE)
}
view(x,
method = method,
file = file,
append = append,
report.title = report.title,
table.classes = table.classes,
bootstrap.css = bootstrap.css,
custom.css = custom.css,
silent = silent,
footnote = footnote,
escape.pipe = escape.pipe,
...)
}
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.