prot.impute | R Documentation |
Imputes missing values in a SummarizedExperiment object.
prot.impute(
se,
fun = c("bpca", "knn", "QRILC", "MLE", "MinDet", "MinProb", "man", "min", "zero",
"mixed", "nbavg", "SampMin"),
...
)
se |
A SummarizedExperiment object |
fun |
A character string specifying the imputation method to use. The available methods are "bpca", "knn", "QRILC", "MLE", "MinDet", "MinProb", "man", "min", "zero", "mixed", "nbavg", and "SampMin". |
... |
Additional arguments passed to the imputation function. |
"SampMin" replaces missing values with the minimum value found in each sample. For information about the remaining imputation methods, see help("imputeMethods", "MsCoreUtils")
A SummarizedExperiment object with imputed values
prot.make_unique
, prot.make_se
data(mset)
se <- make_se(mset)
se <- prot.impute(se, fun = "knn")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.