Sto usando il cursore per eseguire una foresta casuale convalidata in modo incrociato su un set di dati. La variabile Y è un fattore. Non ci sono NaN, Inf o NA nel mio set di dati. Tuttavia, quando eseguo la foresta casuale, ottengo
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
Qualcuno ha idee su se questo errore sia causato dalle NA introdotte dalla coercizione? In tal caso, come posso evitare tale coercizione?