If I have a vector of year and month coded like this:
ym <- c(
201401,
201403:201412,
201501:201502,
201505:201510,
201403
)
And I'd like to end up with a vector that looks like this:
[1] 1 1 2 3 4 5 6 7 8 9 10 11 12 1 2 3 4 5 6 1
That is, I want to count continuous sequences of month records. Can anyone recommend an approach? I've spinning my wheels with something like this:
ym_date <- as.Date(paste0(ym, 01), format = "%Y%m%d")
diff(ym_date)
but haven't been able to get any farther because I'm not sure how to flag that start of a sequence when we are dealing with months. Any base R, tidyverse, data.frame centric or not solution would be welcomed.