From 1b1287c9ebe7ebb5622aeabd87697d9f290e3495 Mon Sep 17 00:00:00 2001 From: be-marc Date: Mon, 25 Nov 2024 10:30:03 +0100 Subject: [PATCH 1/2] ... --- R/batchmark.R | 2 +- man/batchmark.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/batchmark.R b/R/batchmark.R index ed218f1..7b6b6db 100644 --- a/R/batchmark.R +++ b/R/batchmark.R @@ -18,7 +18,7 @@ #' Path to a renv project. #' If not `NULL`, the renv project is activated in the job environment. #' -#' @return [data.table()] with ids of created jobs (invisibly). +#' @return [data.table::data.table()] with ids of created jobs (invisibly). #' @export #' @examples #' tasks = list(mlr3::tsk("iris"), mlr3::tsk("sonar")) diff --git a/man/batchmark.Rd b/man/batchmark.Rd index 14b317a..bd11d59 100644 --- a/man/batchmark.Rd +++ b/man/batchmark.Rd @@ -31,7 +31,7 @@ Path to a renv project. If not \code{NULL}, the renv project is activated in the job environment.} } \value{ -\code{\link[=data.table]{data.table()}} with ids of created jobs (invisibly). +\code{\link[data.table:data.table]{data.table::data.table()}} with ids of created jobs (invisibly). } \description{ This function provides the functionality to leave the interface of \CRANpkg{mlr3} for the computation From 3fb634911dafdb9767c0fba43dcd4461da264d4b Mon Sep 17 00:00:00 2001 From: be-marc Date: Mon, 25 Nov 2024 10:32:12 +0100 Subject: [PATCH 2/2] ... --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 0f3d592..a16cbe1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: mlr3batchmark Title: Batch Experiments for 'mlr3' -Version: 0.1.1.9000 +Version: 0.2.0 Authors@R: c( person("Marc", "Becker", , "marcbecker@posteo.de", role = c("cre", "aut"), comment = c(ORCID = "0000-0002-8115-0400")), diff --git a/NEWS.md b/NEWS.md index d820716..da5b202 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# mlr3batchmark (development version) +# mlr3batchmark 0.2.0 * feat: The design of `batchmark()` can now include parameter settings. * feat: `reduceResultsBatchmark` gains argument `fun` which is passed on to `batchtools::reduceResultsList`.