import the mongoose data as csv and export to /data as .rda for inclusion in the package
library(tidyverse) library(magrittr) # import csv file mongoose <- read.csv("mongooseFullData.csv", header = TRUE, stringsAsFactors = FALSE) %>% select(indiv.id, pack, c13, n15) # export only the columns we need save(mongoose, file = "../data/mongoose.rda", compress = "xz")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.