Changelog
Source:NEWS.md
tidyna 0.5.0
-
weighted.mean()now defaults tona.rm = TRUEand warns when missing values are removed. Unlike base R, missing values in eitherxorwcause the corresponding pair to be dropped.
tidyna 0.4.1
-
quantile()now works without naming theprobsargument, e.g.,quantile(x, c(0.25, 0.5, 0.75)).
tidyna 0.4.0
CRAN release: 2026-01-27
- All functions now support configurable all-NA behavior via the
all_naargument. Choose"error"(default, current behavior),"base"(return base R values like NaN, Inf, 0 depending on the function), or"na"(always return NA). Set globally withoptions(tidyna.all_na = "base").
tidyna 0.2.0
-
range()now defaults tona.rm = TRUEand warns when NAs are removed. Supportsfiniteargument to also remove infinite values with a warning.