Guest User

Untitled

a guest
Oct 17th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. library(magrittr)
  2. months2<-function(date){
  3. months_locale<-"1970-01-01" %>%
  4. as.Date() %>%
  5. seq.Date(by="month",len=12) %>%
  6. months()
  7.  
  8. factor(months(date),ordered=TRUE,levels=months_locale)
  9. }
Add Comment
Please, Sign In to add comment