pin_remove: Delete a pin (legacy API)

View source: R/pin_remove.R

pin_removeR Documentation

Delete a pin (legacy API)

Description

[Deprecated]

Usage

pin_remove(name, board = NULL)

Arguments

name

The name for the pin.

board

The board from where this pin will be removed.

Details

Deletes pins from a legacy board.

Examples


# 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")


rstudio/pins documentation built on April 12, 2025, 6:59 p.m.