R/rowSds.R

Defines functions rowSds

rowSds <-
  function(X, na.rm = FALSE) {
    apply(X, 1, function(r) {
      stats::sd(r, na.rm = na.rm)
    })
  }

Try the SCORPION package in your browser

Any scripts or data that you put into this service are public.

SCORPION documentation built on June 22, 2024, 9:35 a.m.