1
Suppose I have a date in the standard English format "ymd"
, example:
Sys.Date()
"2019-04-11"
Since for my analysis I do not need this date to have the days and I decide to remove them, so that it has a simpler format: "2019-04"
.
How do I change the date format from "year/month/day" to "year/month only"?