## code to prepare `sbc_abundance` dataset goes here
# Attach packages
library(usethis)
library(metajam)
# Save link location for the data package:
sbc_url <- "https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-sbc.30.20&entityid=4587fe81c6d2eabf530c70e53b302132"
# Download the data package with metajam
sbc_download <- download_d1_data(data_url = sbc_url, path = tempdir())
# Read in data
sbc_files <- read_d1_files(sbc_download)
sbc_abundance <- sbc_files$data
# Save the data as a data object (.Rda) with usethis::use_data() - this code should already exist in the script, just update the dataset name
# NOTE: You could do some wrangling HERE to simplify the dataset before storing the .Rda, but we’ll just use it as read in from metajam today
use_data(sbc_abundance, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.