impute_null {scone} | R Documentation |
Null or no-op imputation
impute_null(expression, impute_args)
expression |
the data matrix (genes in rows, cells in columns) |
impute_args |
arguments for imputation (not used) |
the imputed expression matrix.
mat <- matrix(rpois(1000, lambda = 5), ncol=10) imat = impute_null(mat)