obj: an instance of VSLCMresults which defines the model used for imputation.
newdata: data.frame Dataset containing the missing values to impute.
method: character definiting the method of imputation: "postmean" or "sampling"
Examples
# Data loadingdata("heart")# Clustering en 2 classesresults <- VarSelCluster(heart[,-13],2)# Data where missing values will be imputednewdata <- heart[1:2,-13]newdata[1,1]<-NAnewdata[2,2]<-NA# ImputationVarSelImputation(results, newdata)