Nothing
test_that("Pseudo Rao-Blackwell estimator has less variance than Rao-Blackwell estimator",
{
skip_on_cran()
prb <- evaluate_estimator(score = Variance(),
estimator = PseudoRaoBlackwell(),
design = designad,
data_distribution = Normal(FALSE),
mu = 0.3,
sigma = 1
)
rb <- evaluate_estimator(score = Variance(),
estimator = RaoBlackwell(),
design = designad,
data_distribution = Normal(FALSE),
mu = 0.3,
sigma = 1
)
expect_lt(
prb@results$Variance,
rb@results$Variance)
})
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.