Open HenrikBengtsson opened 1 year ago
anyNA()
was added in R 3.1.0. This package supports R (>= 2.12.0), so if we want to keep that support, we need a plan for that too.
FWIW I've deprecated (BioC 3.18) and made defunct (BioC 3.19) the implementations of colAnyMissings()
and rowAnyMissings()
in DelayedMatrixStats.
It never had a anyMissing()
implementation.
We opted to not implement colAnyMissings()
, rowAnyMissings()
, and anyMisisng()
generics when we made MatrixGenerics, following the note in matrixStats that these were no longer recommended and may be removed in future versions.
Action plan:
anyNA()
for R (< 3.1.0)Actually, anyMissing()
takes argument idxs
too, so, I guess we should keep it for now and only deprecated the row- and col- versions.
anyMissing()
,colAnyMissings()
, androwAnyMissings()
are superseeded bybase::anyNA()
,colAnyNAs()
, androwAnyNAs()
since way back.