pub fn vooma(
y: &Array2<f64>,
design: Option<&Array2<f64>>,
span: Option<f64>,
legacy_span: bool,
) -> Result<VoomaOutput>Expand description
vooma(y, design, span, legacy.span) — the continuous-data analog of
voom, with no predictor and no blocking.
y—n_genes x n_sampleslog-expression matrix (must be finite; R’s vooma disallows NAs).design— optionaln_samples x pdesign; defaults to a grand-mean intercept.span— LOWESS span; whenNoneit is chosen adaptively (small.n = 50, power = 1/3, orsmall.n = 10, power = 1/2whenlegacy_span).