R/po_to_name.r

#' @export
#' 
po_to_name <- function (po_abbr, dta = CaugheyTools:::states) {
    po_abbr <- as.character(po_abbr)
    names <- dta$Name[match(po_abbr, dta$POAbrv)]
    return(names)
}
devincaughey/CaugheyTools documentation built on May 9, 2021, 12:44 p.m.