## code to prepare `NOAA_data` dataset
library(tibble)
NOAA_data <- tibble(
variable = c("temperature", "phosphate", "nitrate", "silicate", "oxygen",
"salinity", "density"),
unit = c("C", rep("micromol kg-1", 4), "", "kg m-3"),
citation = c(
vc_cite["temperature"],
rep(vc_cite["nutrients"], 3),
vc_cite["oxygen"],
vc_cite["salinity"],
vc_cite["density"]
)
)
usethis::use_data(NOAA_data, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.