R/colSds.R

Defines functions colSds

colSds <-
  function(X, na.rm = FALSE) {
    apply(X, 2, 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 Sept. 22, 2022, 5:07 p.m.