Nothing
## ---- test-betaSandwich-beta-sandwich-adf
lapply(
X = 1,
FUN = function(i,
tol,
text) {
message(text)
if (!exists("nas1982")) {
try(
data(
"nas1982",
package = "betaSandwich"
),
silent = TRUE
)
}
df <- nas1982
object <- lm(QUALITY ~ NARTIC + PCTGRT + PCTSUPP, data = df)
out <- BetaADF(object)
testthat::test_that(
paste(text, "coef"),
{
testthat::expect_true(
all(
abs(
coef(out) - c(0.4951, 0.3915, 0.2632)
) <= tol
)
)
testthat::expect_true(
all(
abs(
out$est - coef(out)
) <= tol
)
)
}
)
testthat::test_that(
paste(text, "se"),
{
testthat::expect_true(
all(
abs(
summary(out)[, "se"] - c(0.0674, 0.0710, 0.0769)
) <= tol
)
)
testthat::expect_true(
all(
abs(
sqrt(diag(vcov(out))) - summary(out)[, "se"]
) <= tol
)
)
}
)
},
tol = 0.0001,
text = "test-betaSandwich-beta-sandwich-adf"
)
# This test compares the results of the package with Dudgeon (2017)
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.