R/helpers.R

Defines functions sd2

#' @noRd

# Return SD only for numeric vector
sd2 <- function(x) {
    if (!is.numeric(x)) {
        return(NA)
      } else {
        return(stats::sd(x))
      }
  }
sfcheung/stdmod documentation built on Sept. 24, 2024, 11:30 a.m.