Rev 43123 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/rep.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{rep}\alias{rep}\alias{rep.factor}\alias{rep.int}\alias{rep.POSIXct}\alias{rep.POSIXlt}\alias{rep.Date}\title{Replicate Elements of Vectors and Lists}\description{\code{rep} replicates the values in \code{x}. It is a genericfunction, and the (internal) default method is described here.\code{rep.int} is a faster simplified version for the most common case.}\usage{rep(x, \dots)rep.int(x, times)}\arguments{\item{x}{a vector (of any mode including a list) or a pairlist or afactor or (except for \code{rep.int}) a \code{POSIXct} or\code{POSIXlt} or \code{date} object.}\item{\dots}{further arguments to be passed to or from other methods.For the internal default method these can include:\describe{\item{\code{times}}{A vector giving the number oftimes to repeat each element if of length \code{length(x)}, or torepeat the whole vector if of length 1.}\item{\code{length.out}}{non-negative integer. The desired length of theoutput vector. Ignored if \code{NA} or invalid.}\item{\code{each}}{non-negative integer. Each element of \code{x} isrepeated \code{each} times. Treated as \code{1} if \code{NA} orinvalid.}}}\item{times}{see \code{\dots}.}}\details{The default behaviour is as if the call was \code{rep(x, times=1,length.out=NA, each=1)}. Normally just one of the additionalarguments is specified, but if \code{each} is specified with eitherof the other two, its replication is performed first, and then thatimplied by \code{times} or \code{length.out}.If \code{times} consists of a single integer, the result consists ofthe whole input repeated this many times. If \code{times} is avector of the same length as \code{x} (after replication by\code{each}), the result consists of \code{x[1]} repeated\code{times[1]} times, \code{x[2]} repeated \code{times[2]} times andso on.\code{length.out} may be given in place of \code{times},in which case \code{x} is repeated as many times as isnecessary to create a vector of this length. If both are given,\code{length.out} takes priority and \code{times} is ignored.Non-integer values of \code{times} will be truncated towards zero.If \code{times} is a computed quantity it is prudent to add a small fuzz.If \code{x} has length zero and \code{length.out} is supplied and ispositive, the values are filled in using the extraction rules, that isby an \code{NA} of the appropriate class for an atomic vector(\code{0} for raw vectors) and \code{NULL} for a list.}\value{An object of the same type as \code{x} (except that \code{rep} willcoerce pairlists to vector lists).\code{rep.int} returns no attributes.The default method of \code{rep} gives the result names (which willalmost always contain duplicates) if \code{x} had names, but retainsno other attributes except for factors.}\note{Function \code{rep.int} is a simple case handled by internal code, andprovided as a separate function purely for S compatibility.Function \code{rep} is a primitive, but (partial)matching of argument names is performed as for normal functions.You can no longer pass a missing argument to. e.g. \code{length.out}.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth \& Brooks/Cole.}\seealso{\code{\link{seq}}, \code{\link{sequence}}, \code{\link{replicate}}.}\examples{rep(1:4, 2)rep(1:4, each = 2) # not the same.rep(1:4, c(2,2,2,2)) # same as second.rep(1:4, c(2,1,2,1))rep(1:4, each = 2, len = 4) # first 4 only.rep(1:4, each = 2, len = 10) # 8 integers plus two recycled 1's.rep(1:4, each = 2, times = 3) # length 24, 3 complete replicationsrep(1, 40*(1-.8)) # length 7 on most platformsrep(1, 40*(1-.8)+1e-7) # better## replicate a listfred <- list(happy = 1:10, name = "squash")rep(fred, 5)# date-time objectsx <- .leap.seconds[1:3]rep(x, 2)rep(as.POSIXlt(x), rep(2, 3))## named factorx <- factor(LETTERS[1:4]); names(x) <- letters[1:4]xrep(x, 2)rep(x, each=2)rep.int(x, 2) # no names}\keyword{manip}\keyword{chron}