Skip to content

Instantly share code, notes, and snippets.

@wlinInspire
Last active August 25, 2019 02:30
Show Gist options
  • Save wlinInspire/d80a9ed491be9e1178a560d095170e79 to your computer and use it in GitHub Desktop.
Save wlinInspire/d80a9ed491be9e1178a560d095170e79 to your computer and use it in GitHub Desktop.
10 R Functions to Boost Your Productivity
lw <- function(v) {
if (sum(v, na.rm = TRUE) == 0) {
1 / length(v)
} else {
v / sum(v, na.rm = TRUE)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment