Nothing
test_that("cdmSelect", {
cdm <- emptyCdmReference("test db")
expect_true(all(c("person", "observation_period") %in% names(cdm)))
cdm1 <- cdm |> cdmSelect("person")
expect_true("person" %in% names(cdm1))
expect_false("observation_period" %in% names(cdm1))
cdm2 <- cdm |> cdmSelect(!"person")
expect_false("person" %in% names(cdm2))
expect_true("observation_period" %in% names(cdm2))
})
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.