library(tidyverse)
band_members <- tribble(
~ name, ~ band,
"Mick", "Stones",
"John", "Beatles",
"Paul", "Beatles"
)
devtools::use_data(band_members)
band_instruments <- tribble(
~ name, ~ plays,
"John", "guitar",
"Paul", "bass",
"Keith", "guitar"
)
devtools::use_data(band_instruments)
band_instruments2 <- tribble(
~ artist, ~ plays,
"John", "guitar",
"Paul", "bass",
"Keith", "guitar"
)
devtools::use_data(band_instruments2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.