tests/testthat/test-compute_mse.R

n = 10
m_i = 5
m_total = 50

clusterID = rep(1:n, m_i)
p = 10
beta = rep(2, p)
u_i = rnorm(n, 0, 2)
u_i_aug = rep(u_i, each = m_i)
X = matrix(rnorm(m_total * p), m_total, p)
y = X%*%beta + u_i_aug + rnorm(m_total, 0, 1)
C_cluster = cbind(X[1:10, ], diag(n))

fit_nerm <- estimate_NERM(X = X, y = y, 
                          clusterID = clusterID, 
                          X_cluster = NULL)
mse_first <- compute_mse(C_cluster, X, sig_u = fit_nerm$sig_u,
                         sig_e = fit_nerm$sig_e,
                         clusterID = clusterID)

test_that("Output is correct", {
  expect_length(mse_first, n)
  expect_match(class(mse_first), "numeric")
})
KatarzynaReluga/postcAIC documentation built on Jan. 25, 2022, 12:33 a.m.