dump_to_clip | R Documentation |
This function calls dump on one or several R objects, which creates code that recreates them from the console. It then copies this code to the clipboard. This can be used to quickly copy (small) objects between R sessions, for instance during package development and testing, or - of course - to paste the dump code into a forum post.
dump_to_clip(x)
x |
An object to dump to the clipboard, or a character vector of object names.
To enable the use in pipelines, objects that are passed directly will be named |
if (interactive()) {
outcome <- "mpg"
mod <- lm(mpg ~ wt, mtcars)
mod %>% dump_to_clip() # will be named dumped_object
dump_to_clip(c("outcome", "mod")) # will retain variable names
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.