R/read_binsize.R

Defines functions read.binsize

Documented in read.binsize

#' read_binsize function
#' simple prompt for binsize - user input
#'
#' @param n empty input - will take user input
#' @export
#' @examples
#' n <- read_binsize()

read.binsize <- function() {
  n <- readline(prompt="Enter length of time bins: ")
  if(!grepl("^[0-9]+$",n))
  {
    return(read.binsize())
  }
  return(as.integer(n))
}
SenguptaLab/MF.matR documentation built on Feb. 5, 2023, 4:57 p.m.