Estoy usando caret para ejecutar un bosque aleatorio validado cruzado sobre un conjunto de datos. La variable Y es un factor. No hay NaN's, Inf's o NA's en mi conjunto de datos. Sin embargo, cuando ejecuto el bosque aleatorio, obtengo
Error in randomForest.default(m, y, ...) :
NA/NaN/Inf in foreign function call (arg 1)
In addition: There were 28 warnings (use warnings() to see them)
Warning messages:
1: In data.matrix(x) : NAs introduced by coercion
2: In data.matrix(x) : NAs introduced by coercion
3: In data.matrix(x) : NAs introduced by coercion
4: In data.matrix(x) : NAs introduced by coercion
¿Alguien tiene ideas sobre si este error es causado por la NA introducida por la coerción? Si es así, ¿cómo puedo evitar tal coerción?