#' Codelists in a dataframe
#'
#' Returns a dataframe with study codelists from a parsed OpenClinica
#' odm1.3_full .xml export file.
#'
#' @param parsed_xml An object of class \code{XMLInternalDocument}, as returned
#' by \code{XML::xmlParse()}.
#'
#' @return A dataframe.
#' @export
#'
#' @examples
#' # The example odm1.3 xml file address
#' my_file <- system.file("extdata",
#' "odm1.3_full_example.xml",
#' package = "ox",
#' mustWork = TRUE)
#'
#' # Parsing the xml file
#' library(XML)
#' doc <- xmlParse(my_file)
#'
#' # Codelists in a dataframe
#' codelist <- ox_codelist(doc)
#' head(codelist)
ox_codelist <- function (parsed_xml) {
if (! "XMLInternalDocument" %in% class(parsed_xml)) {
stop("parsed_xml should be an object of class XMLInternalDocument", call. = FALSE)
}
dplyr::bind_rows(lapply(XML::xpathApply(parsed_xml,
"//ns:CodeList",
namespaces = .ns_alias(parsed_xml, "ns"),
fun = XML::xmlAncestors,
XML::xmlAttrs),
data.frame,
stringsAsFactors=FALSE)) %>%
dplyr::select(codelist_oid = OID.2,
codelist_name = Name.1,
codelist_data_type = DataType,
sas_format_name = SASFormatName)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.