The returned data.frame
contains the data set id “data.id”,
the “status” (“active”, “deactivated”, “in_preparation”)
and describing data qualities.
Note that by default only active data sets (due to “status = "active"”) will be returned. Furthermore, the argument “limit = 5000” will limit the number of results to 5000.
listOMLDataSets(number.of.instances = NULL, number.of.features = NULL, number.of.classes = NULL, number.of.missing.values = NULL, tag = NULL, data.name = NULL, limit = 5000, offset = NULL, status = "active", verbosity = NULL)
number.of.instances | [ |
---|---|
number.of.features | [ |
number.of.classes | [ |
number.of.missing.values | [ |
tag | [ |
data.name | [ |
limit | [ |
offset | [ |
status | [ |
verbosity | [ |
[data.frame
].
This function is memoised. I.e., if you call this function twice in a running R session,
the first call will query the server and store the results in memory while the second and all subsequent calls will return
the cached results from the first call.
You can reset the cache by calling forget
on the function manually.
Other listing functions: chunkOMLlist
,
listOMLDataSetQualities
,
listOMLEstimationProcedures
,
listOMLEvaluationMeasures
,
listOMLFlows
, listOMLRuns
,
listOMLSetup
, listOMLStudies
,
listOMLTaskTypes
,
listOMLTasks
Other data set-related functions: OMLDataSetDescription
,
OMLDataSet
,
convertMlrTaskToOMLDataSet
,
convertOMLDataSetToMlr
,
deleteOMLObject
,
getOMLDataSet
, tagOMLObject
,
uploadOMLDataSet
# \dontrun{ # datasets = listOMLDataSets() # tail(datasets) # }