new_name | R Documentation |
Rename an R object you're reusing
new_name(old, new, board = reuse::board())
old, new |
String. The name of the old and new objects. |
board |
A pin board, created by |
The object stored as 'new'.
library(pins) board <- board_temp() x <- 1 x %>% reuse("old", board) pin_exists("old", board = board) "old" %>% new_name("new", board) pin_exists("old", board = board) pin_exists("new", board = board)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.