populate | R Documentation |
populate
copies data from a list (e.g. input by a user) to another list
with a similar shape. The second list, called the interface
, will generally
also contain extra metadata for making API requests, such as names or types.
populate(input, interface)
input |
A list with data to copy. |
interface |
A list of a similar shape to copy data into. |
# Make an interface with metadata, e.g. type.
interface <- tag_add(list(foo = c(), bar = c()), list(type = "structure"))
# Combine data and the metadata from the interface.
populate(list(foo = 1, bar = 2), interface)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.