This function returns information on all OpenML runs that match certain
task.id
(s), run.id
(s), flow ID flow.id
and/or
uploader.id
(s). Alternatively the function can be passed a single
tag
to list only runs with the corresponding tag associated.
Note that by default only the first 5000 runs will be returned (due to the argument “limit = 5000”).
listOMLRuns(task.id = NULL, flow.id = NULL, run.id = NULL, uploader.id = NULL, tag = NULL, limit = 5000, offset = NULL, verbosity = NULL)
task.id | [ |
---|---|
flow.id | [ |
run.id | [ |
uploader.id | [ |
tag | [ |
limit | [ |
offset | [ |
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
,
listOMLDataSets
,
listOMLEstimationProcedures
,
listOMLEvaluationMeasures
,
listOMLFlows
, listOMLSetup
,
listOMLStudies
,
listOMLTaskTypes
,
listOMLTasks
Other run-related functions: convertOMLMlrRunToBMR
,
convertOMLRunToBMR
,
deleteOMLObject
, getOMLRun
,
makeOMLRunParameter
,
makeOMLRun
, tagOMLObject
,
uploadOMLRun
# \dontrun{ # runs_ctree = listOMLRuns(flow.id = 2569) # head(runs_ctree) # }