makeAggregation | R Documentation |
This is an advanced feature of mlr. It gives access to some inner workings so the result might not be compatible with everything!
makeAggregation(id, name = id, properties, fun)
id |
( |
name |
( |
properties |
(character)
|
fun |
(
|
(Aggregation).
aggregations, setAggregation
# computes the interquartile range on all performance values
test.iqr = makeAggregation(
id = "test.iqr", name = "Test set interquartile range",
properties = "req.test",
fun = function(task, perf.test, perf.train, measure, group, pred) IQR(perf.test)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.