weights<-chi.squared(Class~.,traindata)
Error: cannot allocate vector of size 167.8 Mb
所以我用
weights<-chi.squared(Class~.,traindata[1:1000])
这给出了 999 个属性的结果
weights<-chi.squared(Class~.,traindata[1000:2000])
Error in eval(expr, envir, enclos) : object 'Class' not found
如何通过拆分数据来获取所有属性。我使用的是 32 位操作系统,因此一次无法获取属性。