#' bounds
#'
#' bounds
#'
#'
#' @inheritParams common_attributes
#' @param minimum Minimum numeric bound of attribute See [minimum()]
#' @param maximum Maximum numeric bound of attribute See [maximum()]
#'
#' @return a bounds list object
#'
#' @export
bounds <- function(minimum = NULL,
maximum = NULL){
Filter(Negate(is.null),
list(
minimum = minimum,
maximum = maximum))}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.