Displaying 1 result from an estimated 1 matches for "train_store_title_view".
2010 Nov 10
2
randomForest can not handle categorical predictors with more than 32 categories
I received this error
Error in randomForest.default(m, y, ...) :
Can not handle categorical predictors with more than 32 categories.
using below code
library(randomForest)
library(MASS)
memory.limit(size=12999)
x <- read.csv("D:/train_store_title_view.csv", header=TRUE)
x <- na.omit(x)
set.seed(131)
sales.rf <- randomForest(sales ~ ., data=x, mtry=3,
importance=TRUE)
My machine (i7) running on 64 bit R with 12 gigs of RAM.
Would anyone know how to avoid this error ?
Thank You for your reply,
Mai Dang
[[alternative HTML version de...