@Pranov_Mishra wrote:
Hi All,
In my attempt to treat missing values, i referred to an older AV article, " Tutorial on 5 Powerful R Packages used for imputing missing values". The article is great and very helpful. However I am not being able to have a dataset with the imputed values alogwith the original dataset. How to do that. However I do not get a dataset with no missing values. How to get there.
I guess a step is missing.Use of missForest
mydata=read.csc(weather.csv) ##[Link to download the file = https://www.biz.uiowa.edu/faculty/jledolter/DataMining/dataexercises.html]###
library(missForest)mydata.imp=missForest::missForest(mydata[,-1])
$OOBerror
NRMSE PFC
0.007603105 0.383018377However I do not get a dataset with no missing values. How to get there.
Posts: 2
Participants: 2