R/fun_less.R

Defines functions fun_less

Documented in fun_less

fun_less <- function(x, ...) {
  nx <- as.numeric(x)
  ax <- c()
  for (i in 1:length(x)) {
    ax[i] <- ifelse(nx[i] < 1e-04, paste("<0.0001"), x[i])
  }
  return(ax)
}

Try the ALassoSurvIC package in your browser

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

ALassoSurvIC documentation built on Dec. 1, 2022, 5:12 p.m.