Skip to content

Instantly share code, notes, and snippets.

@wlinInspire
Created August 11, 2019 03:08
Show Gist options
  • Save wlinInspire/6446747b18c670f7f3543df18733549d to your computer and use it in GitHub Desktop.
Save wlinInspire/6446747b18c670f7f3543df18733549d to your computer and use it in GitHub Desktop.
10 R Tricks to Boost Your Productivity
quick_date <- function(x, …) {
if (anyDuplicated(x)) {
ux <- unique(x)
idx <- match(x, ux)
y <- as.Date.character(ux, …)
return(y[idx])
}
as.Date.character(x, …)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment