R/CamelConvert.R

Defines functions CamelConvert

# Converting to Camel Case ####

CamelConvert <- function(a){
  
  substr(a, 1, 1) <- substr(a, 1, 1) %>% toupper
  
  a
  
}
gfalbery/ggregplot documentation built on Feb. 4, 2025, 3:17 a.m.