search for: my_data_cell

Displaying 1 result from an estimated 1 matches for "my_data_cell".

2012 Dec 06
0
Package party Error in model.matrix.default(as.formula(f), data = blocks) :allocMatrix: too many elements specified
...I¡¯m trying to get unbiased feature importance of my data via package ¡°party¡±, which contains 1-5 integer value, and a few numeric values attributes. The class label is 1-5 integer value as well. In total I have 20 features with 1100 observations. I checked the type my data in R using class(my_data_cell), no factor has been observed. I received a commond error like others did from the past. > lu = read.csv(file=file.choose()) > lu.cf <- cforest(Target ~ ., data = lu, control = cforest_unbiased(mtry = 2, ntree = 50)) > lu.cf <- cforest(Target ~ ., data = lu, control = cforest_unbia...