Code
b <- legacy_temp()
pin(mtcars[1:2], "mtcars2", board = b)
pin_info("mtcars2", b)
Output
# Source: temp<mtcars2> [table]
# Properties:
# rows: 32
# cols: 2
# columns:
# mpg: numeric
# cyl: numeric
Code
pin(mtcars[1:2], "mtcars3", board = "test")
pin_info("mtcars3", board = "test")
Output
# Source: test<mtcars3> [table]
# Properties:
# rows: 32
# cols: 2
# columns:
# mpg: numeric
# cyl: numeric
Code
pin_info("mtcars2")
Condition
Error in `pin_info()`:
! Pin 'mtcars2' was not found.
Code
pin(mtcars[1:2], "mtcars2", board = "test1")
pin(mtcars[1:2], "mtcars2", board = "test2")
pin_info("mtcars2")
Condition
Error in `pin_info()`:
! Pin 'mtcars2' was found in multiple boards: test1,test2
Code
board <- board_temp()
pin_info("mtcars", board = board)
Condition
Warning:
`pin_info()` was deprecated in pins 1.4.0.
i Please use `pin_meta()` instead.
Error in `pin_info()`:
! Use `pin_meta()` with this board, not `pin_info()`
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.