Unpins the given named pin from the given board.
pin_remove(name, board)
name | The name for the pin. |
---|---|
board | The board from where this pin will be removed. |
Notice that some boards do not support deleting pins, this is the case for the Kaggle board. For these boards, you would manually have to remote resources using the tools the board provides.
# define temporary board board <- board_temp() # create mtcars pin pin(mtcars, board = board) # remove mtcars pin pin_remove("mtcars", board = board)