Expand description
arrayWeights — estimate array quality weights.
Pure-Rust port of limma’s arrayWeights and its internal estimators for the
log-linear array-variance model log(sigma_array^2) = Z gamma, with array
weights w = exp(-Z2 gamma):
array_weights—.arrayWeightsREML, the default path (method="auto"with no observation weights and no missing values resolves to"reml"): an exact Fisher-scoring REML similar tostatmod::remlscor.array_weights_gene_by_gene—.arrayWeightsGeneByGene, a single forward Newton pass used formethod="genebygene"(andmethod="auto"when observation weights orNAs are present).array_weights_prwts_reml—.arrayWeightsPrWtsREML, the per-gene REML variant selected bymethod="reml"when observation weights are present.array_weights_quick—arrayWeightsQuick, a fast approximation from an already-fitted model.
Functions§
- array_
weights - Estimate array quality weights by REML.
- array_
weights_ gene_ by_ gene - Estimate array quality weights by the gene-by-gene update algorithm
(
.arrayWeightsGeneByGene). - array_
weights_ prwts_ reml - Estimate array quality weights by REML with per-observation prior weights
(
.arrayWeightsPrWtsREML). - array_
weights_ quick arrayWeightsQuick(y, fit): fast approximate array quality weights from an already-fitted model.