Description Usage Arguments Value Methods Author(s) Examples
Takes in a geno object and imputes markers using various methods.
1 | geno.impute(geno, method, k = 4, maxiter = 10, n.core = 1, ...)
|
geno |
The geno object to impute. Each row is an individual and each column is a marker. Genotypic data is expected to be encoded as |
method |
The method to use for imputation. See details. |
k |
The number of clusters for KNN imputation. |
maxiter |
The maximum number of iterations for RF and SVD imputation. |
n.core |
The number of cores to use for RF imputation. This option is not available on Windows. |
... |
Additional arguments for rrBLUP::A.mat, randomForest::na.roughfix, and missForest::missForest |
A list with data frames corresponding to the methods used for imputation.
Markers can be imputed using mean, median, EM, Random Forest (RF), K Nearest Neighbors (KNN), and Singular Value Decomposition (SVD)
Chris Gaynor, chris.gaynor@roslin.ed.ac.uk
Trevor Rife, trife@ksu.edu
Jessica Rutkoski, jer263@cornell.edu
1 2 3 4 | data(wheat)
impute = geno.impute(hap$geno,c("mean","EM"))
impute$mean[1:10,1:20]
impute$EM[1:10,1:20]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.