Nothing
Code
pin_read(board, "test")
Condition
Error in `object_read()`:
! Cannot automatically read pin:
* Is your pin specified as a full path? Retrieve it with `pin_download()`
* Is your pin specified via a URL that is not a full path, such as a Posit Connect vanity URL? Remember to include a trailing slash `/`
Code
pin_write(mtcars)
Condition
Error in `pin_write()`:
! `board` must be a pin board, not a <data.frame> object.
Code
pin_write(board, mtcars, name = 1:10)
Condition
Error in `pin_write()`:
! `name` must be a string
Code
pin_write(board, mtcars, name = "mtcars", "json")
Condition
Error in `pin_write()`:
! Arguments after the dots `...` must be named, like `type = "json"`.
Code
pin_write(board, mtcars, name = "mtcars", type = "froopy-loops")
Condition
Error in `object_write()`:
! `type` must be one of "rds", "json", "parquet", "arrow", "pickle", "csv", or "qs", not "froopy-loops".
Code
pin_write(board, mtcars, name = "mtcars", metadata = 1)
Condition
Error in `pin_write()`:
! `metadata` must be a list or `NULL`, not the number 1.
Code
pin_write(board, mtcars, title = "title", tags = list(a = "a"))
Condition
Error in `pin_write()`:
! `tags` must be a character vector or `NULL`, not a list.
Code
pin_write(board, mtcars, title = "title", urls = list(a = "a"))
Condition
Error in `pin_write()`:
! `urls` must be a character vector or `NULL`, not a list.
Code
pin_write(board, mtcars, title = "title", metadata = c("tag1", "tag2"))
Condition
Error in `pin_write()`:
! `metadata` must be a list or `NULL`, not a character vector.
Code
b <- board_temp()
pin_write(b, mtcars)
Message
Using `name = 'mtcars'`
Guessing `type = 'rds'`
Creating new version '20120304T050607Z-xxxxx'
Writing to pin 'mtcars'
Code
pin_write(b, data.frame(x = 1))
Condition
Error in `pin_write()`:
! Must supply `name` when `x` is an expression
Code
b <- board_temp()
pin_write(b, mtcars, name = "mtcars", type = "rds")
Message
Creating new version '20120304T050607Z-xxxxx'
Writing to pin 'mtcars'
Code
pin_read(b, "mtcars", hash = "ABCD")
Condition
Error in `pin_read()`:
! Specified hash "ABCD" doesn't match pin hash "dfa6c1c109362781".
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.