Skip to content

Instantly share code, notes, and snippets.

@yutannihilation
Created March 2, 2019 05:37
Show Gist options
  • Save yutannihilation/db921cb0c9975e5b666c55bbe280b6cc to your computer and use it in GitHub Desktop.
Save yutannihilation/db921cb0c9975e5b666c55bbe280b6cc to your computer and use it in GitHub Desktop.
date <- as.Date("2017-01-01")
integer <- 1L
c(date, integer)
#> [1] "2017-01-01" "1970-01-02"
c(integer, date)
#> [1] 1 17167
`+`(date, integer)
#> [1] "2017-01-02"
`+`(integer, date)
#> [1] "2017-01-02"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment