Description Usage Arguments Value Examples
Returns a dataframe with study form references from a parsed OpenClinica odm1.3 .xml export file.
1 | ox_form_ref(parsed_xml)
|
parsed_xml |
An object of class |
A dataframe.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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)
# Form references in a dataframe
form_ref <- ox_form_ref(doc)
head(form_ref)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.