View source: R/misc.utilities.R
attr | R Documentation |
A wrapper for base::attr which defaults to exact matching.
attr(x, which, exact = TRUE)
x , which , exact |
as in |
as in base::attr
x <- list()
attr(x, "name") <- 10
base::attr(x, "n")
stopifnot(is.null(attr(x, "n")))
base::attr(x, "n", exact = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.