Nothing
## ---- test-betaDelta-diff-beta-delta
lapply(
X = 1,
FUN = function(i,
text,
tol) {
message(text)
if (!exists("nas1982")) {
try(
data(
"nas1982",
package = "betaDelta"
),
silent = TRUE
)
}
df <- nas1982
object <- lm(QUALITY ~ NARTIC + PCTGRT + PCTSUPP, data = df)
mvn <- DiffBetaDelta(BetaDelta(object, type = "mvn"))
adf <- DiffBetaDelta(BetaDelta(object, type = "adf"))
testthat::test_that(
paste(text, "mvn", "multiple regression"),
{
testthat::expect_true(
all(
abs(
c(
0.4951 - 0.3915,
0.4951 - 0.2632,
0.3915 - 0.2632
) - coef(mvn)
) <= tol
)
)
testthat::expect_true(
all(
abs(
coef(mvn) - mvn$est
) <= tol
)
)
}
)
testthat::test_that(
paste(text, "adf", "multiple regression"),
{
testthat::expect_true(
all(
abs(
c(
0.4951 - 0.3915,
0.4951 - 0.2632,
0.3915 - 0.2632
) - coef(adf)
) <= tol
)
)
testthat::expect_true(
all(
abs(
coef(adf) - adf$est
) <= tol
)
)
}
)
object <- lm(QUALITY ~ NARTIC, data = df)
testthat::test_that(
paste(text, "mvn", "simple regression"),
{
testthat::expect_error(
DiffBetaDelta(BetaDelta(object, type = "mvn"))
)
}
)
testthat::test_that(
paste(text, "adf", "simple regression"),
{
testthat::expect_error(
DiffBetaDelta(BetaDelta(object, type = "adf"))
)
}
)
},
text = "test-betaDelta-diff-beta-delta",
tol = 0.0001
)
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.