R/utils.R

Defines functions was_sig

# UTILS

was_sig = function(p, threshold = 0.01) {
  if (p < threshold)
    paste0("was significant at alpha < ", threshold)
  else
    paste0("was not significant at alpha < ", threshold)
}
jchrom/aparep documentation built on May 18, 2019, 10:22 p.m.