tidyna

Tired of littering your code with na.rm = TRUE? tidyna masks common R functions and warns you when NAs are removed. It handles some special cases. The table() default is set to useNA = "ifany".

Installation

# CRAN version
install.packages("tidyna")

# or
# install.packages("pak")
pak::pak("statzhero/tidyna")

Usage

library(tidyna)

x <- c(1, 2, NA)
mean(x)
#> ⚠️ 1 missing value removed.
#> [1] 1.5

Suppress warnings with options(tidyna.warn = FALSE).

Functions

Special cases

All-NA input throws error: When all values are NA, tidyna throws an error instead of returning misleading values like Inf, NaN, or 0:

sum(c(NA, NA))
#> Error: All values are NA; check if something went wrong.

base::sum(c(NA, NA), na.rm = TRUE)
#> [1] 0

rowSums returns NA for all-NA rows, but errors if the entire matrix is NA.

cor defaults to use = "pairwise.complete.obs" instead of erroring on NAs.

table defaults to useNA = "ifany", showing NA counts when present rather than silently dropping them.

Roadmap

v0.2.0 will add explicit _aware suffixed versions (mean_aware, sum_aware, etc.) for users who prefer not to mask base functions.