The R Project SVN R

Rev

Rev 27447 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27447 Rev 27541
Line 103... Line 103...
103
  \code{\link[utils]{help}} for obtaining documentation on data sets,
103
  \code{\link[utils]{help}} for obtaining documentation on data sets,
104
  \code{\link{save}} for \emph{creating} the second (\file{.rda}) kind
104
  \code{\link{save}} for \emph{creating} the second (\file{.rda}) kind
105
  of data, typically the most efficient one.
105
  of data, typically the most efficient one.
106
}
106
}
107
\examples{
107
\examples{
-
 
108
require(utils)
108
data()                      # list all available data sets
109
data()                      # list all available data sets
109
data(package = "base")      # list the data sets in the base package
110
data(package = "base")      # list the data sets in the base package
110
data(USArrests, "VADeaths") # load the data sets 'USArrests' and 'VADeaths'
111
data(USArrests, "VADeaths") # load the data sets 'USArrests' and 'VADeaths'
111
help(USArrests)             # give information on data set 'USArrests'
112
help(USArrests)             # give information on data set 'USArrests'
112
}
113
}