
Convert a string from snake_case to a pretty title case
to_title_case.Rd
Takes a character vector and converts it to a character vector of nice looking titles, taking into account common acronyms and abbreviations.
Examples
to_title_case("my_column_name")
#> [1] "My Column Name"
# "My Column Name"
to_title_case(c("kwtid", "img_url", "geom"))
#> [1] "KWTID" "Image URL" "Geometry"
# "KWTID" "Image URL" "Geometry"