#' @export
name <- function(exp) {
unname(exp["experiment"])
}
# ------------------------------------------------------------------------------
#' @export
`name<-` <- function(x, value) {
x["experiment"] <- value
x
}
# ------------------------------------------------------------------------------
f <- function(x, slot, value) {
x[slot][names(value)] <- value
x
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.