getOMLTask {OpenML} | R Documentation |
Get an OpenML task.
Description
Given a task ID, the corresponding OMLTask
will be downloaded
(if not in cache) and returned.
Usage
getOMLTask(task.id, cache.only = FALSE, verbosity = NULL)
Arguments
task.id |
[ |
cache.only |
[ |
verbosity |
[ |
Value
[OMLTask
].
See Also
Other downloading functions:
getOMLDataSetQualities()
,
getOMLDataSet()
,
getOMLFlow()
,
getOMLRun()
,
getOMLStudy()
Other task-related functions:
convertOMLTaskToMlr()
,
deleteOMLObject()
,
listOMLTaskTypes()
,
listOMLTasks()
,
makeOMLTask()
,
tagOMLObject()
Examples
# # Download task and access relevant information to start running experiments
# \dontrun{
# task = getOMLTask(1)
# task
# task$task.type
# task$input$data.set
# head(task$input$data.set$data)
# }
[Package OpenML version 1.12 Index]