an integer of length 1. The month to convert in letters.
lang
a character of length 1. Used to change the default locale
(i.e. the language). Default is NULL (i.e. use the current locale).
See examples below. Depending on the OS and the locale, the output can be
weird.
Value
A character of length 1.
Examples
## Default ----get_month_name(month =4)#> [1] "April"if(FALSE){## Get Spanish name ----get_month_name(month =4, lang ="Spanish")## Get Finnish name ----get_month_name(month =4, lang ="Finnish")}