findUnallocated = function(db){
titleTbl = db %>%
dbReadTable("titleTbl") %>%
filter(!grepl("withdrawn", status, ignore.case = TRUE))
progTbl = db %>% dbReadTable("progTbl")
titleTbl %>%
anti_join(progTbl, by = "subID") %>%
arrange(subID)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.