## code to prepare `DATASET` dataset goes here
trait_data <- read.csv(file.path("data-raw",
"aegyptiDENVmodelTempData_2016-03-30.csv"),
header = TRUE)
aedes_aegypti_priors <- read.csv(file.path("data-raw", "Aedes_prior_data.csv"),
header = TRUE)
aa_EIP_priors <- read.csv(file.path("data-raw", "EIP_priors_2015-12-04.csv"),
header = TRUE)
foi_data <- read.csv(file.path("data-raw",
"All_FOI_estimates_and_predictors.csv"),
stringsAsFactors = FALSE)
foi_data <- foi_data[foi_data$FOI > 0, ]
predictor_rank <- read.csv(file.path("data-raw",
"predictor_rank.csv"),
stringsAsFactors = FALSE)
usethis::use_data(trait_data)
usethis::use_data(aedes_aegypti_priors)
usethis::use_data(aa_EIP_priors)
usethis::use_data(foi_data)
usethis::use_data(predictor_rank)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.