#' A list of Fecal Indicator Bacteria (FIB) factor levels and labels
#'
#' @return A \code{list} with levels (often cutpoints) and labels for FIB categories
#' @export
#'
#' @examples
#' util_fiblevs()
util_fiblevs <- function(){
out <- list(
ecolilev = c(-Inf, 126, 410, 1e3, Inf),
ecolilbs = c('< 126', '126 - 409', '410 - 999', '> 999'),
enterolev = c(-Inf, 35, 130, 1e3, Inf),
enterolbs = c('< 35', '35 - 129', '130 - 999', '> 999'),
fibmatlev = c('A', 'B', 'C', 'D', 'E'),
fibmatlbs = c('A', 'B', 'C', 'D', 'E')
)
return(out)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.