Nothing
test_that("Closed-cohort option creates at least 20% fewer patients", {
init_session()
run()
nOpenPopulation <- get_output()$n_agents
terminate_session()
init_session()
input <- get_input(closed_cohort = 1)$values
run(input=input)
nClosedCohort <- get_output()$n_agents
terminate_session()
expect_lt(nClosedCohort, nOpenPopulation*0.8)
expect_lt(get_inputs()$agent$l_inc_betas[1], -100)
})
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.