listOMLRunEvaluations {OpenML} | R Documentation |
List run results of a task.
Description
Retrieves all run results for task(s) (task.id
), flow(s) (flow.id
)
run(s) (run.id
) or uploaders(s) (uploader.id
and returns a data.frame
.
Each row contains, among others, the run id “rid”. Alternatively the
function can be passed a single tag
to list only runs with the corresponding
tag associated.
Usage
listOMLRunEvaluations(
task.id = NULL,
flow.id = NULL,
run.id = NULL,
uploader.id = NULL,
tag = NULL,
limit = NULL,
offset = NULL,
verbosity = NULL,
evaluation.measure = NULL,
show.array.measures = FALSE,
extend.flow.name = TRUE
)
Arguments
task.id |
[ |
flow.id |
[ |
run.id |
[ |
uploader.id |
[ |
tag |
[ |
limit |
[ |
offset |
[ |
verbosity |
[ |
evaluation.measure |
[ |
show.array.measures |
[ |
extend.flow.name |
[ |
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.
Examples
# \dontrun{
# # get run results of task 6 (as many rows as runs for this task)
# rev_tid6 = listOMLRunEvaluations(task.id = 6L)
# str(rev_tid6)
#
# # get run results of run 8 (one row)
# rev_rid8 = listOMLRunEvaluations(run.id = 8)
# str(rev_rid8)
# }