Nothing
skip_on_cran()
edc_options(edc_lookup_overwrite_warn=FALSE)
# Zip generation ------------------------------------------------------------------------------
#copy edc_example_mixed() to a dirname. Need to manually turn it to zip for now.
if(FALSE){
tm = edc_example_mixed()
path = test_path("edc_example_mixed_SAS_XPORT_2000_01_01_00_00")
for(i in names(tm)){
x = tm[[i]]
if(!is.data.frame(x) || i==".lookup") next
print(i)
filename = path(path, i, ext="xpt")
haven::write_xpt(tm[[i]], filename)
}
# archive::archive_write_files()
}
# Actual test ---------------------------------------------------------------------------------
test_that("Split mixed outside read_trialmaster()", {
tm = edc_example_mixed()
# local_options(edc_override_ignore_cols = "crfname")
mixed_data = split_mixed_datasets(tm, id="SUBJID", verbose=FALSE)
mixed_data %>% names() %>% expect_equal(c("long_mixed_short", "long_mixed_long" ))
mixed_data %>% map_dbl(nrow) %>% expect_equal(c(long_mixed_short=100, long_mixed_long=200))
mixed_data %>% map_dbl(ncol) %>% expect_equal(c(long_mixed_short=3, long_mixed_long=3))
})
test_that("Split mixed inside read_trialmaster()", {
edc_options(edc_read_verbose=0, edc_lookup=NULL, .local=TRUE)
local_options(edc_override_ignore_cols = "crfname")
common = c("date_extraction", "datetime_extraction", ".lookup")
f = test_path("edc_example_mixed_SAS_XPORT_2000_01_01_00_00.zip")
tm1 = read_trialmaster(f, pw="foobar")
# names(tm1) %>% dput()
expect_setequal(names(tm1), c("long_mixed", "long_pure", "short", common))
tm2 = read_trialmaster(f, pw="foobar", split_mixed="short") %>%
expect_classed_conditions(warning_class="edc_read_cannot_split_mixed_warn")#no effect
# names(tm2) %>% dput()
expect_setequal(names(tm2), c("long_mixed", "long_pure", "short", common))
tm3 = read_trialmaster(f, pw="foobar", split_mixed=c("long_pure", "long_mixed"))
# names(tm3) %>% dput()
expect_setequal(names(tm3), c("long_mixed", "long_pure", "short", "long_mixed_short",
"long_mixed_long", common))
})
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.