tests/testthat/test-fit_alpha_Beta_1.R

print("Check that fit_alpha_Beta matches glmnet group lasso regression estimate when Gamma = 0")

TOLERANCE = 1e-12
COEF_THRESHOLD = 1e-4

set.seed(1)

library(IBMR)
library(glmnet)

create_Y_matrix = function(Y, categories) {

  Y = t(sapply(Y, function(y) categories == y) * 1)

  colnames(Y) = categories

  return(Y)

}

n = 500

g4 = sample(1:4, n, replace = TRUE)
x = matrix(rnorm(n * 100), n, 100)

system.time({fit3 = glmnet(rbind(x, x), c(g4, g4), family = "multinomial", alpha = 1, standardize = FALSE, type.multinomial = "grouped", maxit = 1e7, thresh = TOLERANCE)})
test2 = as.matrix(do.call(cbind, coef(fit3, fit3$lambda[20]))[-1, ])

Y_mat = create_Y_matrix(g4, 1:4)

system.time({test = fit_alpha_Beta(list(Y_mat, Y_mat), list(x, x), list(x, x), fit3$lambda[20], 1000, TOLERANCE, rep(0, 4), matrix(0, nrow = 100, ncol = 4))$Beta})
plot(test[, 1] - test[, 4], test2[, 1] - test2[, 4])
abline(0, 1)

test_that("Estimated Beta from fit_alpha_Beta matches glmnet", {
  expect(all(abs((test[, 1] - test[, 4]) - (test2[, 1] - test2[, 4])) < COEF_THRESHOLD), "coefficients not equal")
})
keshav-motwani/IBMR documentation built on April 15, 2023, 9:47 a.m.