R/fun_less.R

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 YPInterimTesting package in your browser

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

YPInterimTesting documentation built on June 7, 2019, 5:02 p.m.