Hi everyone,
I'm new with R and I have a question about missForest package. I have a data.frame with some NA's values on some columns.
I use the missForest library to imput values, but when I make a summary of the new dataset, it told me that there's still some NA's values.
The code is the following:
new.credits<-missForest(credits.df)
summary(new.credits$ximp)
(credits.df is a data.frame)
The code never told me there's an error, but is not working.
Output:
> new.credits<-missForest(credits.df)
missForest iteration 1 in progress...done!
missForest iteration 2 in progress...done!
> summary(new.credits$ximp)
V1 V2
?: 12 ? : 12
a:210 22.67 : 9
b:468 20.42 : 7
18.83 : 6
19.17 : 6
20.67 : 6
(Other): 644
When I do a summary of the new dataset you can see 12 "?" values in V1 and 12 "?" values on V2.
I don't know what I'm doing wrong with the library.
Hope you can help me.
Thank you all!