Nothing
context("CharacterizationPlots")
test_that("plotAgeDistributions", {
ageData <- getCharacterizationDemographics(
connectionHandler = connectionHandler,
schema = 'main',
targetId = 1,
outcomeId = 3,
type = 'age'
)
p <- plotAgeDistributions(ageData = ageData)
testthat::expect_s3_class(p, 'ggplot')
})
test_that("plotSexDistributions", {
sexData <- getCharacterizationDemographics(
connectionHandler = connectionHandler,
schema = 'main',
targetId = 1,
outcomeId = 3,
type = 'sex'
)
p <- plotSexDistributions(sexData = sexData)
testthat::expect_s3_class(p, 'ggplot')
})
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.