1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% 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.
}
|