Nothing
#' Get the code list associated with the object
#'
#' @param x the object to get the \code{\link{codelist}} from.
#'
#' @return
#' An object of type 'codelist'.
#'
#' @export
cl <- function(x) {
UseMethod("cl")
}
#' @rdname cl
#' @export
cl.default <- function(x) {
as.codelist(attr(x, "codelist"))
}
#' @rdname cl
#' @export
cl.code <- function(x) {
as.codelist(attr(x, "codelist"))
}
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.