powered by
Retrieve metadata for pins in legacy boards.
pin_info( name, board = NULL, extended = TRUE, metadata = TRUE, signature = FALSE, ... )
The exact name of the pin to match when searching.
The board name used to find the pin.
Should additional board-specific information be shown?
Should additional pin-specific information be shown?
Should a signature to identify this pin be shown?
Additional parameters.
# old API board_register_local(cache = tempfile()) pin(mtcars) pin_info("mtcars", "local") # new API board <- board_temp() board %>% pin_write(mtcars) board %>% pin_meta("mtcars")
Run the code above in your browser using DataLab