#' @export
indices <- function(x) UseMethod("indices")
#' @export
indices.default <- function(x) attr(x, "indices")
#' @export
`indices<-` <- function(x, value) UseMethod("indices<-")
#' @export
`indices<-.default` <- function(x, value) {
attr(x, "indices") <- value
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.