R/firstup_fxn.R

Defines functions firstup

#' Change the first letter to upper case
firstup <- function(x) {
   substr(x, 1, 1) <- toupper(substr(x, 1, 1))
   x
 }
chantelwetzel-noaa/HandyCode documentation built on July 22, 2020, 10:52 a.m.