convertOMLTaskToMlr {OpenML} | R Documentation |
Convert an OpenML task to mlr.
Description
Converts an OMLTask
to a list of Task
,
ResampleInstance
and Measure
.
Usage
convertOMLTaskToMlr(
obj,
measures = NULL,
mlr.task.id = "<oml.data.name>",
ignore.flagged.attributes = TRUE,
drop.levels = TRUE,
verbosity = NULL
)
Arguments
obj |
[ |
measures |
[ |
mlr.task.id |
[ |
ignore.flagged.attributes |
[ |
drop.levels |
[ |
verbosity |
[ |
Value
[list] A list with the following objects:
See Also
Other task-related functions:
deleteOMLObject()
,
getOMLTask()
,
listOMLTaskTypes()
,
listOMLTasks()
,
makeOMLTask()
,
tagOMLObject()
Examples
# \dontrun{
# library("mlr")
# vinnieOML = getOMLTask(task.id = 4845)
# vinnieMlr = convertOMLTaskToMlr(vinnieOML)
# }