下面是我试图用R中的MLR库为随机森林执行的完整代码,以检查“ information.gain”和“ chi-square”值。 我的DV是连续的销售“数量”。
>>traintask_1 <- makeRegrTask(data=finaltrain,target="quantity")
>>
im_feat <- generateFilterValuesData(traintask_1, method = c("information.gain","chi.squared"))
在运行generateFilterValuesData()
时遇到下面的错误问题
>Error in .jcall("weka/filters/Filter", "Lweka/core/Instances;", "useFilter", :
java.lang.IllegalArgumentException: A duplicate bin range was detected. Try increasing the bin range precision
请有人帮我解决这个错误!