knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE)
library(dplyr) library(kableExtra) load("cohort.summary.RDS")
for (i in 1:length(cohort.summary)) { cat("###", names(cohort.summary)[[i]], "\n") print(kable(cohort.summary[[i]], col.names = c("Concept set", "Concept ID", "Concept name", "Vocabulary", "Is excluded?", "Include descendants?")) %>% kable_styling(bootstrap_options = c("striped", "bordered"))) cat('\n\n<!-- -->\n\n') }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.