Use this function to measure imputations accuracy and track impact of different algorithms on simulated or biological datasets.
imputations_accuracy(obs, imp)
obs | The original dataset prior to imputations. This can be simulated data. |
---|---|
imp | The imputed data with predicted genotyped values. |
A list with information that were dropped from the analysis. This can be populations, individuals and markers. The accuracy measure returned the misclassification error (ME). The ME is provided by populations, individuals, markers and overall.
Thierry Gosselin thierrygosselin@icloud.com
if (FALSE) { me.imputations <- imputations_accuracy( obs = "sim.data", imp = "imputed.data" ) }