Rev 7081 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{vector}\title{Vectors}\usage{vector(mode = "logical", length = 0)as.vector(x, mode = "any")is.vector(x, mode = "any")}\alias{vector}\alias{as.vector}\alias{as.vector.factor}\alias{is.vector}\arguments{\item{mode}{A character string giving an atomic mode, or \code{"any"}.}\item{length}{A non-negative integer specifying the desired length.}\item{x}{An object.}}\description{\code{vector} produces a vector of the given length and mode.\code{as.vector}, a generic, attempts to coerce its argument into avector of mode \code{mode} (the default is to coerce to whichever modeis most convenient). The attributes of \code{x} are removed.\code{is.vector} returns \code{TRUE} if \code{x} is a vector (of modelogical, integer, real or character if not specified) and\code{FALSE} otherwise.}\details{Note that factors are \emph{not} vectors; \code{is.vector} returns\code{FALSE} and \code{as.vector} converts to character mode.}\value{For \code{vector}, a vector of the given length and mode. Logicalvector elements are initialized to \code{FALSE}, numeric vectorelements to \code{0} and character vector elements to \code{""}.}\seealso{\code{\link{c}}, \code{\link{is.numeric}}, \code{\link{is.list}}, etc.}\examples{df <- data.frame(x=1:3, y=5:7)\dontrun{## Error:as.vector(data.frame(x=1:3, y=5:7), mode="numeric")}###-- All the following are TRUE:is.list(df)! is.vector(df)! is.vector(df, mode="list")is.vector(list(), mode="list")is.vector(NULL, mode="NULL")}\keyword{classes}