Created
November 10, 2021 18:51
-
-
Save chelseaparlett/7a0fd77c24e543fac7ac43d5054a5381 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terms <- c("error", "random", "model", | |
"mixed", "linear", "effects", | |
"variance") | |
probs <- c(0.1,0.1, 0.55, 0.05, 0.05, 0.1, 0.05) | |
new_jargon <- sample(terms, | |
size = sample(c(2,3),1), | |
prob = probs) | |
new_jargon <- paste(new_jargon, collapse = " ") | |
new_jargon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment