bind_codes | R Documentation |
Create a codes data.frame
bind_codes(...)
... |
codes as created with |
a data.frame of codes
# plain list of codes
codes <- c("here", "some", "codes")
# codes with extra arguments
codelist <- list(
code("yes", color = "green"),
code("no", color = "red")
)
bind_codes(codelist)
# codes with children
codelist <- c(
code(
"birds",
code("chicken"),
code("dove")
),
code(
"mammals",
code("dog"),
code("bear")
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.