unstash | R Documentation |
Remove one or more objects from the stash.
unstash(var, single_var, verbose = NULL)
var |
The name or a vector of names of objects to remove. |
single_var |
Specifies a single name (key) to remove. Use this when the object was stashed using an arbitrary object as the key. |
verbose |
Whether to print action statements (default TRUE). |
Returns NULL
(invisibly).
stash("x", { x <- 1 }) unstash("x") stash(list(letters, cars), { 7 }, functional = TRUE) # styler: off unstash(single_var = list(letters, cars)) #' # Remove directory for this example - do not do in real use. unlink(".mustashe", recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.