Is it possible to format the following number to Year-Month I entries as follows:
1402 1401 1312
Meaning February 2014. January 2014 and December 2013.
I tried:
date <- 1402
date <- as.Date(as.character(date), format = "%y%m")
But I get an NA as an output.