Nothing
set.seed(1234)
m <- rppi_egmodel(1000, maxden = 4)
#simulate weights
set.seed(134)
vw <- virtualweights(m$sample)
acut = 0.1
test_that("estimator2 and SE matches for simulated weights", {
est_sim <- estimator2(vw$newY, acut = acut, incb = 1, beta0 = m$beta)
est_hardcoded <- estimator2(m$sample, acut = acut, incb = 1, beta0 = m$beta, w = vw$w)
expect_equal(est_hardcoded, est_sim)
estSE_sim <- estimator2SE(vw$newY,acut,est_sim$estimator2, est_sim$W_est, incb = 1, beta0 = m$beta)
estSE_hardcoded <- estimator2SE(m$sample, acut = acut, est_sim$estimator2, est_sim$W_est, incb = 1, beta0 = m$beta, w = vw$w)
expect_equal(estSE_hardcoded, estSE_sim)
})
test_that("ppi_mmmm matches for simulated weights", {
#simulate sample from the multinomial PPI model:
x=matrix(0,nrow(m$sample),m$p)
for (j in 1:nrow(m$sample))
{
x[j,]=rmultinom(1,2000,prob=m$sample[j,])
}
vw <- virtualweights(x)
est_sim <- ppi_mmmm(vw$newY, rep(2000, nrow(vw$newY)), beta0 = m$beta)
est_hardcoded <- ppi_mmmm(x, rep(2000, nrow(x)), beta0 = m$beta, w = vw$w)
expect_equal(est_hardcoded, est_sim)
})
test_that("estimator1 and SE matches for simulated weights", {
est_sim <- estimator1(vw$newY, acut = acut, incb = 1, beta = m$beta, computeSE = TRUE)
est_hardcoded <- estimator1(m$sample, acut = acut, incb = 1, beta = m$beta, w = vw$w, computeSE = TRUE)
expect_equal(est_hardcoded, est_sim)
})
test_that("estimatorall1 matches for simulated weights", {
est_sim <- estimatorall1(vw$newY, acut = acut, w = rep(1, nrow(vw$newY)))
est_hardcoded <- estimatorall1(m$sample, acut = acut, w = vw$w)
expect_equal(est_hardcoded, est_sim)
})
test_that("dir_sqrt_prodh matches for simulated weights", {
est_sim <- dir_sqrt_prodh(vw$newY, acut = acut, w = rep(1, nrow(vw$newY)))
est_hardcoded <- dir_sqrt_prodh(m$sample, acut = acut, w = vw$w)
expect_equal(est_hardcoded, est_sim)
})
test_that("ppi_alr_gengamma matches for simulated weights", {
est_sim <- ppi_alr_gengamma(vw$newY, betap = m$beta[3], w = rep(1, nrow(vw$newY)))
est_hardcoded <- ppi_alr_gengamma(m$sample, betap = m$beta[3], w = vw$w)
expect_equal(est_hardcoded$est$paramvec, est_sim$est$paramvec)
})
test_that("dir_sqrt_minimah matches for simulated weights", {
est_sim <- dir_sqrt_minimah(vw$newY, acut = acut)
est_hardcoded <- dir_sqrt_minimah(m$sample, acut = acut, w = vw$w)
expect_equal(est_hardcoded, est_sim)
})
test_that("dir_sqrt_prodh matches for simulated weights", {
est_sim <- dir_sqrt_prodh(vw$newY, acut = acut)
est_hardcoded <- dir_sqrt_prodh(m$sample, acut = acut, w = vw$w)
expect_equal(est_hardcoded, est_sim)
})
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.