imputeBetas | R Documentation |
Impute of missing data of specific platform
imputeBetas(
betas,
platform = NULL,
BPPARAM = SerialParam(),
celltype = NULL,
sd_max = 999
)
betas |
named vector of beta values |
platform |
platform |
BPPARAM |
use MulticoreParam(n) for parallel processing |
celltype |
celltype/tissue context of imputation, if not given, will use nearest neighbor to determine. |
sd_max |
maximum standard deviation in imputation confidence |
imputed data, vector or matrix
betas = openSesame(sesameDataGet("EPIC.1.SigDF"))
sum(is.na(betas))
betas2 = imputeBetas(betas, "EPIC")
sum(is.na(betas2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.