
Last chance! 50% off unlimited learning
Sale ends in
Deletes pins from a legacy board.
pin_remove(name, board = NULL)
The name for the pin.
The board from where this pin will be removed.
# old API
board_register_local(cache = tempfile())
pin(mtcars)
pin_remove("mtcars")
# new API
board <- board_local()
board %>% pin_write(mtcars)
board %>% pin_delete("mtcars")
Run the code above in your browser using DataLab