#' ---
#' title: "Data Preparation"
#' ---
#' ### Download the raw data from EDI.org
#+ download_data, eval=FALSE
# Attach packages
library(usethis)
library(metajam)
library(dplyr)
library(janitor)
# Save link location for the data package:
vcr_url <- "https://portal.edirepository.org/nis/dataviewer?packageid=knb-lter-vcr.236.11&entityid=27549758f3eeecd9be5344562e0340fb"
# Download the data package with metajam
vcr_download <- download_d1_data(data_url = vcr_url, path = tempdir(), dir_name="vcr_fish")
#+ data sampling, eval=FALSE
#+ save data, include=FALSE, eval = FALSE
# Read in data
vcr_files <- read_d1_files(vcr_download, "read.csv",
header=T
,skip=21
,sep=","
,quot='"' )
vcr_fish <- vcr_files$data %>% clean_names()
usethis::use_data(vcr_fish, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.