listOMLFlows {OpenML} | R Documentation |
List all registered OpenML flows.
Description
The returned data.frame
contains the flow id “fid”,
the flow name (“full.name” and “name”), version information
(“version” and “external.version”) and the uploader (“uploader”)
of all registered OpenML flows.
Usage
listOMLFlows(tag = NULL, limit = NULL, offset = NULL, verbosity = NULL)
Arguments
tag |
[ |
limit |
[ |
offset |
[ |
verbosity |
[ |
Value
[data.frame
].
Note
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.
See Also
Other listing functions:
chunkOMLlist()
,
listOMLDataSetQualities()
,
listOMLDataSets()
,
listOMLEstimationProcedures()
,
listOMLEvaluationMeasures()
,
listOMLRuns()
,
listOMLSetup()
,
listOMLStudies()
,
listOMLTaskTypes()
,
listOMLTasks()
Other flow-related functions:
convertOMLFlowToMlr()
,
deleteOMLObject()
,
getOMLFlow()
,
makeOMLFlowParameter()
,
makeOMLFlow()
,
tagOMLObject()
Examples
# \dontrun{
# flows = listOMLFlows()
# tail(flows)
# }