4
Suppose I have a date in the standard English format year-month-day (ymd):
data = Sys.Date()
print(data)
[1] "2019-12-03"
But I really need this date to be in the Brazilian standard day/month/year format:
print(data_BR)
[1] "03/12/2019"
How can I turn my English standard date into a Brazilian standard date on R?
Thanks for the reply, had already used the function
format
, but I used it wrong. But now it worked perfectly.– Izak Mandrak