Delete a pin (or pins), removing it from the board
Arguments
- board
A pin board, created by
board_folder()
,board_connect()
,board_url()
or anotherboard_
function.- names
The names of one or more pins to delete
- ...
Additional arguments passed on to methods for a specific board.
Examples
board <- board_temp()
board |> pin_write(1:5, "x")
#> Guessing `type = 'rds'`
#> Creating new version '20250904T024501Z-ed27d'
#> Writing to pin 'x'
board |> pin_write(mtcars)
#> Using `name = 'mtcars'`
#> Guessing `type = 'rds'`
#> Creating new version '20250904T024501Z-1a322'
#> Writing to pin 'mtcars'
board |> pin_write(runif(1e6), "y")
#> Guessing `type = 'rds'`
#> Creating new version '20250904T024502Z-0d079'
#> Writing to pin 'y'
board |> pin_list()
#> [1] "mtcars" "x" "y"
board |> pin_delete(c("x", "y"))
board |> pin_list()
#> [1] "mtcars"