- board
A pin board, created by board_folder()
, board_connect()
,
board_url()
or another board_
function.
- name
Pin name.
- version
Retrieve a specific version of a pin. Use pin_versions()
to
find out which versions are available and when they were created.
- hash
Specify a hash to verify that you get exactly the dataset that
you expect. You can find the hash of an existing pin by looking for
pin_hash
in pin_meta()
.
- ...
Additional arguments passed on to methods for a specific board.
- x
An object (typically a data frame) to pin.
- type
File type used to save x
to disk. Must be one of
"csv", "json", "rds", "parquet", "arrow", or "qs". If not supplied, will
use JSON for bare lists and RDS for everything else. Be aware that CSV and
JSON are plain text formats, while RDS, Parquet, Arrow, and
qs are binary formats.
- title
A title for the pin; most important for shared boards so that
others can understand what the pin contains. If omitted, a brief
description of the contents will be automatically generated.
- description
A detailed description of the pin contents.
- metadata
A list containing additional metadata to store with the pin.
When retrieving the pin, this will be stored in the user
key, to
avoid potential clashes with the metadata that pins itself uses.
- versioned
Should the pin be versioned? The default, NULL
, will
use the default for board
- tags
A character vector of tags for the pin; most important for
discoverability on shared boards.
- force_identical_write
Store the pin even if the pin contents are
identical to the last version (compared using the hash). Only the pin
contents are compared, not the pin metadata. Defaults to FALSE
.