Revision e9e80dfdfbf8685c47ba116081144d159d1d5d7e authored by IyarLin on 28 August 2018, 01:04:36 UTC, committed by Lars Kotthoff on 28 August 2018, 01:04:36 UTC
* fixed ibrier measure

* Changed F to FALSE
1 parent 93d3d3e
Raw File
utils_plot.R
# checks for duplicated entries in learner.names and stops
# with error message containing the learner name that appeared more
# than once
checkDuplicatedLearnerNames = function(learner.names) {
  dupl = duplicated(learner.names)
  if (any(dupl)) {
    dupl.learners = unique(learner.names[dupl])
    stopf("Learner short names are not unique for: %s. \n  Set 'pretty.names = FALSE' to resolve this.",
      collapse(dupl.learners))
  }
}
back to top