Nothing
#' @title Style
#'
#' @description
#' Generic style method used for overriding to
#' get style information from various logging objects.
#'
#' @param obj object to extract value from.
#'
#' @return object's value
#' @export
style <- function(obj) {
UseMethod("style", obj)
}
#' @title Value
#'
#' @description
#' Base method for getting the value of a
#' format object.
#'
#' @param obj object to extract value from.
#' @param ... further arguments passed to or from other methods.
#'
#' @return object's value
#' @export
value <- function(obj, ...) {
UseMethod("value", obj)
}
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.