Nothing
#' @title Package Load and Unload Functions
#' @description Functions called when the package is loaded or unloaded.
#' @name zzz
#' @keywords internal
NULL
# Null-coalescing operator (base R 4.4+; defined here for R >= 4.1 compat)
`%||%` <- function(x, y) if (is.null(x)) y else x
.onLoad <- function(libname, pkgname) { # nocov start
init_registries()
register_builtin_shapes()
register_builtin_layouts()
register_builtin_themes()
register_builtin_palettes()
} # nocov end
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.