Compute confidence intervals for synthdid object
Usage
# S3 method for class 'synthdid'
confint(object, parm, level = 0.95, ...)Examples
# \donttest{
data(california_prop99)
result <- synthdid(PacksPerCapita ~ treated,
data = california_prop99,
index = c("State", "Year"),
se = TRUE,
se_method = "jackknife"
)
#> Warning: jackknife standard errors require more than one treated unit and at least two controls with weight.
confint(result)
#> Warning: Standard error not available; cannot compute confidence interval
#> Lower Upper
#> treated NA NA
confint(result, level = 0.90)
#> Warning: Standard error not available; cannot compute confidence interval
#> Lower Upper
#> treated NA NA
# }