R 版本 2.15.0 (2012-03-30) RStudio 0.96.316 Win XP,最后更新
我确实有一个包含 40 个变量和 15.000 个观察值的数据集。我想使用 bestglm 搜索可能的好模型(逻辑回归)。我试过 bestglm,但它不适用于这种中等大小的数据集。经过几次试验,我认为当有超过 30 个变量时 bestglm 会失败,至少在我的计算机上(4G ram,双核)。
您可以自己尝试 bestglm 限制:
library(bestglm)
bestBIC_test <- function(number_of_vars) {
# Simulate data frame for logistic regression
glm_sample <- as.data.frame(matrix(rnorm(100*number_of_vars), 100))
# Get some 1/0 variable
glm_sample[,number_of_vars][glm_sample[,number_of_vars] > mean(glm_sample[,number_of_vars]) ] <- 1
glm_sample[,number_of_vars][glm_sample[,number_of_vars] != 1 ] <- 0
# Try to calculate best model
bestBIC <- bestglm(glm_sample, IC="BIC", family=binomial)
}
# Test bestglm with increasing number of variables
bestBIC_test(10) # OK, running
bestBIC_test(20) # OK, running
bestBIC_test(25) # OK, running
bestBIC_test(28) # Error: cannot allocate vector of size 1024.0 Mb
bestBIC_test(30) # Error: cannot allocate vector of size 2.0 Gb
bestBIC_test(40) # Error in rep(-Inf, 2^p) : invalid 'times' argument
我可以在 R 中使用任何替代方法来搜索可能的好模型吗?