# this R script makes a data.table with all inputs and outputs of the OBIC
# require library
library(data.table)
# load description csv file
column_description.obic <- fread("dev/data/column_description.csv")
# a few adaptations to ensure correct format
column_description.obic[column_description.obic == ''] <- NA
column_description.obic <- na.omit(column_description.obic, cols = "column")
# save as Rdata file for the package
usethis::use_data(column_description.obic, version = 3, overwrite = TRUE, compress = 'xz')
# save as temporary file in dev/data
saveRDS(column_description.obic,file='dev/data/column_description_obic.rds')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.