3
I have a table in r with a column with months in numerical format
data = c("01", "03", "03", "04", "05", "10", "12"))
I would like to convert in the abbreviations of the months. I found how to put the abbreviations in English but I can’t put them in Portuguese.
Note: in Portugal now the months are written with lowercase initial and
locale = "pt_BR"
uses this convention. There is no difference if it islocale = "pt_PT"
. The system is Ubuntu 19.10/R 3.6.2– Rui Barradas