datasets | R Documentation |
The data
function is used both to load data sets from packages,
and give a display of the names and titles of data sets in one or more packages,
however it does not return a result that can be easily used to get additional
information about the nature of data sets in packages.
The datasets()
function is designed to produce a more useful summary
display of data sets in one or more packages. It extracts the class
and dimension information (dim
or codelength) of each item,
and formats these to provide additional descriptors.
datasets(package,
allClass=FALSE,
incPackage=length(package) > 1,
maxTitle=NULL)
package |
a character vector giving the package(s) to look in |
allClass |
a logical variable. Include all classes of the item ( |
incPackage |
include the package name in result? |
maxTitle |
maximum length of data set Title |
The requested packages must be installed, and are silently loaded in order
to extract class
and size information.
A data.frame
whose rows correspond to data sets found in package
.
The columns (for a single package) are:
Item |
data set name, a character variable |
class |
class, the object class of the data set, typically one of |
dim |
an abbreviation of the dimensions of the data set, in a form like |
Title |
data set title |
In Rmd documents, 'datasets("package") |> knitr::kable()' can be used to create a more pleasing display.
Michael Friendly, with R-help from Curt Seeliger
data
, kable
datasets("vcdExtra")
# datasets(c("vcd", "vcdExtra"))
datasets("datasets", maxTitle=50)
# just list dataset names in a package
datasets("vcdExtra")[,"Item"]
datasets("vcd")[,"Item"]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.