Nothing
## ---- test-simStateSpace-sim-beta-n
lapply(
X = 1,
FUN = function(i,
text,
n) {
message(text)
beta <- matrix(
data = c(
0.7, 0.5, -0.1,
0.0, 0.6, 0.4,
0, 0, 0.5
),
nrow = 3
)
vcov_beta_vec_l <- t(chol(0.001 * diag(9)))
testthat::test_that(
text,
{
testthat::expect_true(
all(
beta - (1 / n) * Reduce(
f = `+`,
x = SimBetaN(
n = n,
beta = beta,
vcov_beta_vec_l = vcov_beta_vec_l
)
) < 0.001
)
)
}
)
},
text = "test-simStateSpace-sim-beta-n",
n = 100000
)
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.