Closed markfairbanks closed 2 years ago
vec <- c("a" = 1, "b" = 2, "c" = 3) dplyr::lag(vec) #> a b #> NA 1 2 tidytable::lag(vec) #> [1] NA 1 2
Edit: On second thought the performance hit probably isn't worth it. If someone requests it we can implement.
Edit: On second thought the performance hit probably isn't worth it. If someone requests it we can implement.