Revision 768a94f53fa2e087592fd71d3b7566d0b3776540 authored by pat-s on 15 March 2020, 21:25:27 UTC, committed by pat-s on 15 March 2020, 21:25:27 UTC
1 parent 527ab33
Raw File
mergeBenchmarkResults.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/mergeBenchmarkResults.R
\name{mergeBenchmarkResults}
\alias{mergeBenchmarkResults}
\title{Merge different BenchmarkResult objects.}
\usage{
mergeBenchmarkResults(bmrs)
}
\arguments{
\item{bmrs}{(list of \link{BenchmarkResult})\cr
\code{BenchmarkResult} objects that should be merged.}
}
\value{
\link{BenchmarkResult}
}
\description{
The function automatically combines a list of \link{BenchmarkResult}
objects into a single \link{BenchmarkResult} object as long as the full
crossproduct of all task-learner combinations are available.
}
\details{
Note that if you want to merge several \link{BenchmarkResult} objects,
you must ensure that all possible learner and task combinations will be
contained in the returned object. Otherwise, the user will be notified
which task-learner combinations are missing or duplicated.

When merging \link{BenchmarkResult} objects with different measures, all missing
measures will automatically be recomputed.
}
back to top