R/getSchoolTypes.R

Defines functions getSchoolTypes

Documented in getSchoolTypes

#' Helper function to return the revenue range dictionary
#'
#'@return dictionary
#'
#' @author Layla Rohkohl, \email{byehity@gmail.com}
#'
#' @examples
#' getSchoolTypes()
#'
#' @export
#'
getSchoolTypes <- function() {
  return(c(
    "for_profit_private" = "Private",
    "non_profit_private" = "Private (Non-Profit)",
    "public" = "Public"
  ))
}
Lyrohk/cruncher documentation built on Dec. 17, 2021, 1:17 a.m.