source("connection_to_datasets/init_testing_datasets.R")
source("definition_tests/def-ds.rPois.R")
context("ds.rPois::expt::no seeds::single")
test_that("Poisson without seeds",
{
connect.dataset.1()
.test.basic.expectation(-1,'poisson_dist_1')
.test.basic.expectation(0,'poisson_dist_2')
.test.basic.expectation(1,'poisson_dist_3')
.test.basic.expectation(20,'poisson_dist_4')
.test.basic.expectation(30,'poisson_dist_5')
.test.basic.expectation(2^31-1,'poisson_dist_6')
})
context("ds.rPois::expt::no seeds::multiple")
test_that("Poisson without seeds",
{
connect.all.datasets()
.test.basic.expectation(-1,'poisson_dist_1')
.test.basic.expectation(0,'poisson_dist_2')
.test.basic.expectation(1,'poisson_dist_3')
.test.basic.expectation(20,'poisson_dist_4')
.test.basic.expectation(30,'poisson_dist_5')
.test.basic.expectation(2^31-1,'poisson_dist_6')
})
context("ds.rPois::expt::with seeds::single")
test_that("Poisson with seeds",
{
connect.dataset.1()
.test.basic.expectation.with.seeds(-1,'poisson_dist_1')
.test.basic.expectation.with.seeds(0,'poisson_dist_2')
.test.basic.expectation.with.seeds(1,'poisson_dist_3')
.test.basic.expectation.with.seeds(20,'poisson_dist_4')
.test.basic.expectation.with.seeds(30,'poisson_dist_5')
.test.basic.expectation.with.seeds(2^31-1,'poisson_dist_6')
.test.basic.expectation.with.seeds(2^31,'poisson_dist_7')
})
context("ds.rPois::expt::with seeds::multiple")
test_that("Poisson with seeds",
{
connect.all.datasets()
.test.basic.expectation.with.seeds(-1,'poisson_dist_1')
.test.basic.expectation.with.seeds(0,'poisson_dist_2')
.test.basic.expectation.with.seeds(1,'poisson_dist_3')
.test.basic.expectation.with.seeds(20,'poisson_dist_4')
.test.basic.expectation.with.seeds(30,'poisson_dist_5')
.test.basic.expectation.with.seeds(2^31-1,'poisson_dist_6')
.test.basic.expectation.with.seeds(2^31,'poisson_dist_7')
.test.too.large.seed(3)
.test.too.negative.seed()
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.