pin_list {pins} | R Documentation |
List names of all pins in a board. This is a low-level function; use
pin_search()
to get more data about each pin in a convenient form.
pin_list(board, ...)
board |
A pin board, created by |
... |
Other arguments passed on to methods |
A character vector
board <- board_temp()
board %>% pin_write(1:5, "x")
board %>% pin_write(letters, "y")
board %>% pin_write(runif(20), "z")
board %>% pin_list()