R/alphabet.R

Defines functions alphabet

Documented in alphabet

alphabet <-
function() {
  
  letters <- c("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z")
  sample(letters, 1, replace = F)
}
dtreisman/HW5Stat321 documentation built on Nov. 20, 2019, 12:03 a.m.