Nothing
codelistFromCodelistWithDetails <- function(x){
if(isFALSE(inherits(x, "codelist_with_details"))){
cli::cli_abort("x is not class codelist_with_details but {class(x)}")
}
for(i in seq_along(x)){
x[[i]] <- x[[i]] |>
dplyr::pull("concept_id")
}
x <- omopgenerics::newCodelist(x)
x
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.