Rev 26663 | Blame | Last modification | View Log | Download | RSS feed
\name{data}\alias{data}\alias{print.packageIQR}\title{Data Sets}\description{Loads specified data sets, or list the available data sets.}\usage{data(\dots, list = character(0), package = .packages(),lib.loc = NULL, verbose = getOption("verbose"),envir = .GlobalEnv)}\arguments{\item{\dots}{a sequence of names or literal character strings.}\item{list}{a character vector.}\item{package}{a name or character vector giving the packages to lookinto for data sets. By default, all packages in the search path areused, then the \file{data} subdirectory (if present) of the currentworking directory.}\item{lib.loc}{a character vector of directory names of \R libraries,or \code{NULL}. The default value of \code{NULL} corresponds to alllibraries currently known. If the default is used, the loadedpackages are searched before the libraries.}\item{verbose}{a logical. If \code{TRUE}, additional diagnostics areprinted.}\item{envir}{the \link{environment} where the data should be loaded.}}\value{a character vector of all data sets specified, or information aboutall available data sets in an object of class \code{"packageIQR"} ifnone were specified.}\details{Currently, four formats of data files are supported:\enumerate{\item files ending \file{.R} or \file{.r} are\code{\link{source}()}d in, with the \R working directory changedtemporarily to the directory containing the respective file.\item files ending \file{.RData} or \file{.rda} are\code{\link{load}()}ed.\item files ending \file{.tab}, \file{.txt} or \file{.TXT} are readusing \code{\link{read.table}(\dots, header = TRUE)}, and henceresult in a data frame.\item files ending \file{.csv} or \file{.CSV} are read using\code{\link{read.table}(\dots, header = TRUE, sep = ";")},and also result in a data frame.}If more than one matching file name is found, the first on this listis used.The data sets to be loaded can be specified as a sequence of names orcharacter strings, or as the character vector \code{list}, or as both.For each given data set, the first two types (\file{.R} or \file{.r},and \file{.RData} or \file{.rda} files) can create several variablesin the load environment, which might all be named differently from thedata set. The second two (\file{.tab}, \file{.txt}, or \file{.TXT},and \file{.csv} or \file{.CSV} files) will always result in thecreation of a single variable with the same name as the data set.If no data sets are specified, \code{data} lists the available datasets. It looks for a new-style data index in the \file{Meta} or, ifthis is not found, an old-style \file{00Index} file in the \file{data}directory of each specified package, and uses these files to prepare alisting. If there is a \file{data} area but no index, available datafiles for loading are computed and included in the listing, and awarning is given: such packages are incomplete. The information aboutavailable data sets is returned in an object of class\code{"packageIQR"}. The structure of this class is experimental. Inearlier versions of R, an empty character vector was returned alongwith listing available data sets.If \code{lib.loc} is not specified, the data sets are searched foramongst those packages already loaded, followed by the \file{data}directory (if any) of the current working directory and then packagesin the specified libraries. If \code{lib.loc} \emph{is} specified,packages are searched for in the specified libraries, even if they arealready loaded from another library.To just look in the \file{data} directory of the current workingdirectory, set \code{package = NULL}.}\note{The data files can be many small files. On some file systems it isdesirable to save space, and the files in the \file{data} directory ofan installed package can be zipped up as a zip archive\file{Rdata.zip}. You will need to provide a single-column file\file{filelist} of file names in that directory.One can take advantage of the search order and the fact that a\file{.R} file will change directory. If raw data are stored in\file{mydata.txt} then one can set up \file{mydata.R} to read\file{mydata.txt} and pre-process it, e.g., using \code{transform}.For instance one can convert numeric vectors to factors with theappropriate labels. Thus, the \file{.R} file can effectively containa metadata specification for the plaintext formats.}\seealso{\code{\link{help}} for obtaining documentation on data sets,\code{\link{save}} for \emph{creating} the second (\file{.rda}) kindof data, typically the most efficient one.}\examples{data() # list all available data setsdata(package = "base") # list the data sets in the base packagedata(USArrests, "VADeaths") # load the data sets 'USArrests' and 'VADeaths'help(USArrests) # give information on data set 'USArrests'}\keyword{documentation}\keyword{datasets}