Skip to content

Instantly share code, notes, and snippets.

@spinkney
Last active December 9, 2021 01:36
Show Gist options
  • Save spinkney/b1969041e4aa43af107b37cc32185693 to your computer and use it in GitHub Desktop.
Save spinkney/b1969041e4aa43af107b37cc32185693 to your computer and use it in GitHub Desktop.
zodic
zodiac <- function(year) {
element <- structure(rep(c("Metal", "Water", "Wood", "Fire", "Earth"), each = 2),
.Names = 0:9
)
sign <- structure(c(
"Monkey", "Rooster", "Dog", "Pig", "Rat",
"Ox", "Tiger", "Rabbit", "Dragon",
"Snake", "Horse", "Goat"
),
.Names = 0:11)
z_r <- year %% 12 + 1
s_r <- year %% 10 + 1
paste0("You are a ", element[s_r], " ", sign[z_r], "!")
}
zodiac(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment