R/tef_makeErrTable.R

Defines functions tef_makeErrTable

#' Create table of error messages
#'
#' Deprecated
#'
#' @export
#'
#' @noRd
#'
tef_makeErrTable <- function(){
  errTable <- data.frame(
    smallVariance = 'The variation in the response variable is very small. Reconsider the appropriateness of predicting it. '
    ,nonBinary = 'The response variable is not bounded by [or exactly] 0 or 1. Results may be unstable. '
    ,smallTime = 'The number of time points is small. Results may be unstable. Consider restricting the rate parameter. '
  )
  return(errTable)
}
akcochrane/TEfits documentation built on June 12, 2025, 11:10 a.m.