Convert imputed data to a dataframe, using the same setting from original input data.
Convert imputed data to a dataframe, using the same setting from original input data.
This is a utility function to convert the imputed data matrix to a dataframe. This function will be implemented as a RCPP internal function later on.
GetDataFrame(dest, from, cols =1:NCOL(from))
Arguments
dest: the imputed output data matrix.
from: the original input dataframe.
cols: optinal. Always use default for now.
Returns
The returned dataframe object for imputed data.
Examples
require(NPBayesImputeCat)#Please use NYexample data set for a more realistic exampledata('NYMockexample')#create the modelmodel <- CreateModel(X,MCZ,10,10000,0.25,0.25,8888)#run 1 burnins, 2 mcmc iterations and thin every 2 iterationsmodel$Run(1,2,2,TRUE)#retrieve parameters from the final iterationresult <- model$snapshot
#convert ImputedX matrix to dataframe, using proper factors/names etc.ImputedX <- GetDataFrame(result$ImputedX,X)#View(ImputedX)