Nothing
# tests for TSRI
# Data generation from the example in the ivtools ivglm() helpfile ----
set.seed(9)
n <- 1000
psi0 <- 0.5
Z <- rbinom(n, 1, 0.5)
X <- rbinom(n, 1, 0.7*Z + 0.2*(1 - Z))
m0 <- plogis(1 + 0.8*X - 0.39*Z)
Y <- rbinom(n, 1, plogis(psi0*X + log(m0/(1 - m0))))
dat <- data.frame(Z, X, Y)
test_that("Single instrument example - identity link", {
skip_on_cran()
# skip_if_not_installed("ivtools")
# ivtools for comparison fit
# library(ivtools)
# fitZ.L <- glm(Z ~ 1, data = dat)
# fitY.LZX <- glm(Y ~ X + Z, family = binomial(link = "identity"), data = dat)
# fitIdentGest <- ivglm(estmethod = "g",
# X = "X",
# fitZ.L = fitZ.L,
# fitY.LZX = fitY.LZX,
# data = dat,
# link = "identity",
# Y = "Y",
# ctrl = TRUE)
crd <- 0.1064741 # fitIdentGest$est["X"]
crdse <- 0.04748229 # sqrt(fitIdentGest$vcov)
fit01 <- tsri(Y ~ X | Z, data = dat, link = "identity")
expect_equal(fit01$estci[4,1], crd, ignore_attr = "names", tolerance = 1e-5)
expect_s3_class(fit01, "tsri")
smy01 <- summary(fit01)
expect_s3_class(smy01, "summary.tsri")
expect_output(print(fit01))
expect_output(print(smy01))
# manual fit
stage1 <- lm(X ~ Z)
betamanual <- coef(stage1)
res <- residuals(stage1)
stage2 <- lm(Y ~ X + res)
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit01$estci[,1], betamanual, ignore_attr = TRUE)
})
test_that("gmm identity link check", {
skip_on_cran()
tsriIdentAddMoments <- function(theta, x){
# extract variables from x
Y <- x[,"Y"]
X <- x[,"X"]
Z1 <- x[,"Z"]
# generate first stage residuals
stage1 <- lm(X ~ Z1)
res <- residuals(stage1)
# moments
a1 <- (X - theta[1] - Z1*theta[2])
a2 <- (X - theta[1] - Z1*theta[2])*Z1
m1 <- (Y - (theta[3] + X*theta[4] + theta[5]*(X - theta[1] - Z1*theta[2])))
m2 <- (Y - (theta[3] + X*theta[4] + theta[5]*(X - theta[1] - Z1*theta[2])))*X
m3 <- (Y - (theta[3] + X*theta[4] + theta[5]*(X - theta[1] - Z1*theta[2])))*res
return(cbind(a1, a2, m1, m2, m3))
}
library(gmm)
tsrigmmident <- gmm(tsriIdentAddMoments, x = dat, t0 = rep(0, 5), vcov = "iid")
fit01 <- tsri(Y ~ X | Z, data = dat)
# compare estimates
expect_equal(fit01$estci[,1], tsrigmmident$coefficients, tolerance = 0.005, ignore_attr = TRUE)
# compare SEs
SEs <- sqrt(diag(vcov(tsrigmmident)))
SEs2 <- sqrt(diag(vcov(fit01$fit)))
expect_equal(SEs2, SEs, tolerance = 0.001, ignore_attr = TRUE)
})
test_that("Single instrument example - logadd link", {
skip_on_cran()
# skip_if_not_installed("ivtools")
# ivtools for comparison fit
# library(ivtools)
# fitZ.L <- glm(Z ~ 1, data = dat)
# fitY.LZX <- glm(Y ~ X + Z, family = poisson, data = dat) # binomial(link = "log")
# fitLogGest <- ivglm(estmethod = "g",
# X = "X",
# fitZ.L = fitZ.L,
# fitY.LZX = fitY.LZX,
# data = dat,
# link = "log",
# Y = "Y",
# ctrl = TRUE)
logcrr <- 0.1314654 # fitLogGest$est["X"]
logcrrse <- 0.06035374 # sqrt(fitLogGest$vcov)
fit11 <- tsri(Y ~ X | Z, data = dat, link = "logadd")
expect_equal(fit11$estci[4,1], logcrr, tolerance = 0.05, ignore_attr = "names")
expect_s3_class(fit11, "tsri")
smy11 <- summary(fit11)
expect_s3_class(smy11, "summary.tsri")
expect_output(print(fit11))
expect_output(print(smy11))
# manual estimation check
stage1 <- lm(X ~ Z, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
stage2 <- glm(Y ~ X + res, family = poisson) # binomial(link = "log")
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit11$estci[,1], betamanual, ignore_attr = "names")
})
test_that("Single instrument example - logmult link", {
skip_on_cran()
# skip_if_not_installed("ivtools")
# ivtools for comparison fit
# library(ivtools)
# fitZ.L <- glm(Z ~ 1, data = dat)
dat$Y[dat$Y == 0] <- 0.001
# fitY.LZX <- glm(Y ~ X + Z, family = Gamma(link = "log"), data = dat)
# fitLogGest <- ivglm(estmethod = "g",
# X = "X",
# fitZ.L = fitZ.L,
# fitY.LZX = fitY.LZX,
# data = dat,
# link = "log",
# Y = "Y",
# ctrl = TRUE)
logcrr <- 0.1313029 # fitLogGest$est["X"]
logcrrse <- 0.06027666 # sqrt(fitLogGest$vcov)
fit12 <- tsri(Y ~ X | Z, data = dat, link = "logmult")
expect_equal(fit12$estci[4,1], logcrr, tolerance = 0.05, ignore_attr = "names")
expect_s3_class(fit12, "tsri")
smy12 <- summary(fit12)
expect_s3_class(smy12, "summary.tsri")
expect_output(print(fit12))
expect_output(print(smy12))
# manual fit for comparison
stage1 <- lm(X ~ Z, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
Y[Y == 0] <- 0.001
stage2 <- glm(Y ~ X + res, family = Gamma(link = "log"))
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit12$estci[,1], betamanual, tolerance = 0.01, ignore_attr = "names")
dat$Y[dat$Y == 0.001] <- 0
})
test_that("Single instrument example - logit link", {
skip_on_cran()
# skip_if_not_installed("ivtools")
# ivtools for comparison fit
# library(ivtools)
# fitZ.L <- glm(Z ~ 1, data = dat)
# fitY.LZX <- glm(Y ~ X + Z, family = binomial(link = "logit"), data = dat)
# fitLogitGest <- ivglm(estmethod = "g",
# X = "X",
# fitZ.L = fitZ.L,
# fitY.LZX = fitY.LZX,
# data = dat,
# link = "logit",
# Y = "Y",
# ctrl = TRUE)
logcor <- 0.6666527 # fitLogitGest$est["X"]
logcorse <- 0.2896101 # sqrt(fitLogitGest$vcov)
fit21 <- tsri(Y ~ X | Z, data = dat, link = "logit")
expect_equal(fit21$estci[4,1], logcor, tolerance = 0.1, ignore_attr = "names")
expect_s3_class(fit21, "tsri")
smy21 <- summary(fit21)
expect_s3_class(smy21, "summary.tsri")
expect_output(print(fit21))
expect_output(print(smy21))
# manual fit for comparison
stage1 <- lm(X ~ Z, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
stage2 <- glm(Y ~ X + res, family = binomial)
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit21$estci[,1], betamanual, ignore_attr = TRUE)
})
# Subset of observations ----
test_that("Test subset argument", {
skip_on_cran()
datfifty <- dat[1:50,]
fitcompare <- tsri(Y ~ X | Z, data = datfifty)
fitsubset <- tsri(Y ~ X | Z, data = dat, subset = 1:50)
expect_equal(fitsubset$estci, fitcompare$estci)
})
# Data generation for multiple instrument tests ----
set.seed(123456)
n <- 1000
psi0 <- 0.8
G1 <- rbinom(n, 2, 0.5)
G2 <- rbinom(n, 2, 0.3)
G3 <- rbinom(n, 2, 0.4)
C1 <- runif(n)
C2 <- runif(n)
U <- runif(n)
pX <- plogis(0.7*G1 + G2 - G3 + U + C1 + C2)
X <- rbinom(n, 1, pX)
pY <- plogis(-2 + psi0*X + U + C1 + C2)
Y <- rbinom(n, 1, pY)
dat <- data.frame(G1, G2, G3, X, Y, C1, C2)
test_that("Multiple instrument example with covariates - identity link", {
skip_on_cran()
fit30 <- tsri(Y ~ X + C1 + C2 | G1 + G2 + G3 + C1 + C2, data = dat)
expect_output(print(fit30))
smry30 <- summary(fit30)
expect_output(print(smry30))
# manual fit for comparison
stage1 <- lm(X ~ G1 + G2 + G3 + C1 + C2, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
stage2 <- lm(Y ~ X + res + C1 + C2)
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit30$estci[,1], betamanual, ignore_attr = TRUE)
})
test_that("Multiple instrument example with covariates - logadd link", {
skip_on_cran()
fit31 <- tsri(Y ~ X + C1 + C2 | G1 + G2 + G3 + C1 + C2, data = dat, link = "logadd")
expect_output(print(fit31))
smry31 <- summary(fit31)
expect_output(print(smry31))
# manual fit for comparison
stage1 <- lm(X ~ G1 + G2 + G3 + C1 + C2, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
stage2 <- glm(Y ~ X + res + C1 + C2, family = poisson)
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit31$estci[,1], betamanual, ignore_attr = TRUE)
})
test_that("Multiple instrument example with covariates - logmult link", {
skip_on_cran()
fit32 <- tsri(Y ~ X + C1 + C2 | G1 + G2 + G3 + C1 + C2, data = dat, link = "logmult")
expect_output(print(fit32))
smry32 <- summary(fit32)
expect_output(print(smry32))
# manual fit for comparison
stage1 <- lm(X ~ G1 + G2 + G3 + C1 + C2, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
Y[Y == 0] <- 0.001
stage2 <- glm(Y ~ X + res + C1 + C2, family = Gamma(link = "log"), control = list(maxit = 1E2))
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit32$estci[,1], betamanual, tolerance = 0.01, ignore_attr = TRUE)
})
test_that("Multiple instrument example with covariates - logit link", {
skip_on_cran()
fit33 <- tsri(Y ~ X + C1 + C2 | G1 + G2 + G3 + C1 + C2, data = dat, link = "logit")
expect_output(print(fit33))
smry33 <- summary(fit33)
expect_output(print(smry33))
# manual fit for comparison
stage1 <- lm(X ~ G1 + G2 + G3 + C1 + C2, data = dat)
betamanual <- coef(stage1)
res <- residuals(stage1)
stage2 <- glm(Y ~ X + res + C1 + C2, family = binomial)
betamanual <- c(betamanual, coef(stage2))
expect_equal(fit33$estci[,1], betamanual, ignore_attr = TRUE)
})
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.