R/get-sd.r

Defines functions get_sd.categorical get_sd.continuous get_sd

get_sd <- function(x) {  
  UseMethod("get_sd", x)
}

get_sd.continuous <- function(object) {
  return (object$sd)
}

get_sd.categorical <- function(object) {  
  return (NA)
}
poissonconsulting/jaggernaut documentation built on Feb. 18, 2021, 11:10 p.m.