Learn R Programming

pins (version 1.2.1)

pin_remove: Delete a pin (legacy API)

Description

Deletes pins from a legacy board.

Usage

pin_remove(name, board = NULL)

Arguments

name

The name for the pin.

board

The board from where this pin will be removed.

Examples

Run this code
if (FALSE) { # rlang::is_installed("filelock")
# 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