R/measures.R

Defines functions make_measure_info

# we store the information about the measures in an environment.
# this way, we can (a) construct them easily and (b) generate documentation.
make_measure_info = function(crit, label, lower, upper, minimize, predict_type = "partition") {
  list(crit = crit, label = label, lower = lower, upper = upper, minimize = minimize, predict_type = predict_type)
}
measures = new.env(parent = emptyenv())

Try the mlr3cluster package in your browser

Any scripts or data that you put into this service are public.

mlr3cluster documentation built on March 31, 2023, 11:11 p.m.