I would like to know if it is possible to compute a BIC for a multivariate regression (One predictor X and 3 responses outcomes Y). If yes, how?
In R, when I run:
M1 <- lm(cbind(Y1, Y2, Y3) ~ X, data = dataset) M0 <- lm (cbind(Y1, Y2, Y3) ~1, data = dataset) BIC(M1, M0) I have the following output error: Error in logLik.lm(X[[i]], ...) : 'logLik.lm' does not support multiple responses
So it is possible to have BIC for multivariate regression, and if yes how can I compute the BIC on R?
Thanks