Rev 6994 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{sample}\title{Random Samples and Permutations}\usage{sample(x, size, replace=FALSE, prob)}\alias{sample}\description{\code{sample} takes a sample of the specified size fromthe elements of \code{x} using either with or without replacementsampling according to the value of \code{replace}.By default \code{size} is equal to \code{length(x)}so that \code{sample(x)} generates a random permutationof the elements of \code{x}.If \code{x} has length 1, sampling takes place from\code{1:x}.The optional \code{prob} argument can be used to give a vectorof probabilities of obtaining the elements of the vector beingsampled.}\examples{x <- 1:12# a random permutationsample(x)# bootstrap samplingsample(x,replace=TRUE)# 100 Bernoulli trialssample(c(0,1), 100, replace = TRUE)}\keyword{distribution}