Skip to content

Instantly share code, notes, and snippets.

@chelseaparlett
Created November 10, 2021 18:51
Show Gist options
  • Save chelseaparlett/7a0fd77c24e543fac7ac43d5054a5381 to your computer and use it in GitHub Desktop.
Save chelseaparlett/7a0fd77c24e543fac7ac43d5054a5381 to your computer and use it in GitHub Desktop.
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