Capitalizes the characters Making the first letter uppercase
Examples
x <- c(
"dna methylation",
"rRNA processing",
"post-Transcriptional gene silencing"
)
capitalize(x)
#> [1] "Dna methylation" "rRNA processing"
#> [3] "Post-Transcriptional gene silencing"