getOMLDataSet {OpenML} | R Documentation |
Get an OpenML data set.
Description
Given a data set ID, the corresponding OMLDataSet
will be downloaded (if not in cache) and returned.
Note that data splits and other task-related information are not included in
an OMLDataSet
. Tasks can be downloaded with getOMLTask
.
Usage
getOMLDataSet(
data.id = NULL,
data.name = NULL,
data.version = NULL,
cache.only = FALSE,
verbosity = NULL
)
Arguments
data.id |
[ |
data.name |
[ |
data.version |
[ |
cache.only |
[ |
verbosity |
[ |
Value
[OMLDataSet
].
Note
One of data.id
or data.name
must be passed.
See Also
Other downloading functions:
getOMLDataSetQualities()
,
getOMLFlow()
,
getOMLRun()
,
getOMLStudy()
,
getOMLTask()
Other data set-related functions:
OMLDataSetDescription
,
OMLDataSet
,
convertMlrTaskToOMLDataSet()
,
convertOMLDataSetToMlr()
,
deleteOMLObject()
,
listOMLDataSets()
,
tagOMLObject()
,
uploadOMLDataSet()
Examples
# \dontrun{
# dat = getOMLDataSet(data.id = 9)
#
# # this object contains the data ($data)
# # and meta information
# str(dat, 1)
# summary(dat$data)
# }