- using R version 4.4.3 (2025-02-28 ucrt)
- using platform: x86_64-w64-mingw32
- R was compiled by
gcc.exe (GCC) 13.3.0
GNU Fortran (GCC) 13.3.0
- running under: Windows Server 2022 x64 (build 20348)
- using session charset: UTF-8
- checking for file 'mlr3benchmark/DESCRIPTION' ... OK
- this is package 'mlr3benchmark' version '0.1.7'
- package encoding: UTF-8
- checking package namespace information ... OK
- checking package dependencies ... OK
- checking if this is a source package ... OK
- checking if there is a namespace ... OK
- checking for hidden files and directories ... OK
- checking for portable file names ... OK
- checking whether package 'mlr3benchmark' can be installed ... OK
See the install log for details.
- checking installed package size ... OK
- checking package directory ... OK
- checking DESCRIPTION meta-information ... OK
- checking top-level files ... OK
- checking for left-over files ... OK
- checking index information ... OK
- checking package subdirectories ... OK
- checking code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [2s] OK
- checking whether the package can be loaded with stated dependencies ... [2s] OK
- checking whether the package can be unloaded cleanly ... [2s] OK
- checking whether the namespace can be loaded with stated dependencies ... [2s] OK
- checking whether the namespace can be unloaded cleanly ... [2s] OK
- checking loading without being on the library search path ... [2s] OK
- checking use of S3 registration ... OK
- checking dependencies in R code ... OK
- checking S3 generic/method consistency ... OK
- checking replacement functions ... OK
- checking foreign function calls ... OK
- checking R code for possible problems ... [8s] OK
- checking Rd files ... [1s] OK
- checking Rd metadata ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking examples ... [14s] ERROR
Running examples in 'mlr3benchmark-Ex.R' failed
The error most likely occurred in:
> ### Name: autoplot.BenchmarkAggr
> ### Title: Plots for BenchmarkAggr
> ### Aliases: autoplot.BenchmarkAggr
>
> ### ** Examples
>
> if (requireNamespaces(c("mlr3learners", "mlr3", "rpart", "xgboost"))) {
+ library(mlr3)
+ library(mlr3learners)
+ library(ggplot2)
+
+ set.seed(1)
+ task = tsks(c("iris", "sonar", "wine", "zoo"))
+ learns = lrns(c("classif.featureless", "classif.rpart", "classif.xgboost"))
+ learns$classif.xgboost$param_set$values$nrounds = 50
+ bm = benchmark(benchmark_grid(task, learns, rsmp("cv", folds = 3)))
+ obj = as_benchmark_aggr(bm)
+
+ # mean and error bars
+ autoplot(obj, type = "mean", level = 0.95)
+
+ if (requireNamespace("PMCMRplus", quietly = TRUE)) {
+ # critical differences
+ autoplot(obj, type = "cd",style = 1)
+ autoplot(obj, type = "cd",style = 2)
+
+ # post-hoc friedman-nemenyi
+ autoplot(obj, type = "fn")
+ }
+
+ }
INFO [19:14:17.688] [mlr3] Running benchmark with 36 resampling iterations
INFO [19:14:17.723] [mlr3] Applying learner 'classif.featureless' on task 'iris' (iter 1/3)
INFO [19:14:17.762] [mlr3] Applying learner 'classif.featureless' on task 'iris' (iter 2/3)
INFO [19:14:17.802] [mlr3] Applying learner 'classif.featureless' on task 'iris' (iter 3/3)
INFO [19:14:17.849] [mlr3] Applying learner 'classif.rpart' on task 'iris' (iter 1/3)
INFO [19:14:17.896] [mlr3] Applying learner 'classif.rpart' on task 'iris' (iter 2/3)
INFO [19:14:17.949] [mlr3] Applying learner 'classif.rpart' on task 'iris' (iter 3/3)
INFO [19:14:17.996] [mlr3] Applying learner 'classif.xgboost' on task 'iris' (iter 1/3)
INFO [19:14:18.106] [mlr3] Applying learner 'classif.xgboost' on task 'iris' (iter 2/3)
INFO [19:14:18.212] [mlr3] Applying learner 'classif.xgboost' on task 'iris' (iter 3/3)
INFO [19:14:18.293] [mlr3] Applying learner 'classif.featureless' on task 'sonar' (iter 1/3)
INFO [19:14:18.325] [mlr3] Applying learner 'classif.featureless' on task 'sonar' (iter 2/3)
INFO [19:14:18.358] [mlr3] Applying learner 'classif.featureless' on task 'sonar' (iter 3/3)
INFO [19:14:18.392] [mlr3] Applying learner 'classif.rpart' on task 'sonar' (iter 1/3)
INFO [19:14:18.467] [mlr3] Applying learner 'classif.rpart' on task 'sonar' (iter 2/3)
INFO [19:14:18.548] [mlr3] Applying learner 'classif.rpart' on task 'sonar' (iter 3/3)
INFO [19:14:18.599] [mlr3] Applying learner 'classif.xgboost' on task 'sonar' (iter 1/3)
INFO [19:14:18.738] [mlr3] Applying learner 'classif.xgboost' on task 'sonar' (iter 2/3)
INFO [19:14:18.854] [mlr3] Applying learner 'classif.xgboost' on task 'sonar' (iter 3/3)
INFO [19:14:19.006] [mlr3] Applying learner 'classif.featureless' on task 'wine' (iter 1/3)
INFO [19:14:19.045] [mlr3] Applying learner 'classif.featureless' on task 'wine' (iter 2/3)
INFO [19:14:19.088] [mlr3] Applying learner 'classif.featureless' on task 'wine' (iter 3/3)
INFO [19:14:19.128] [mlr3] Applying learner 'classif.rpart' on task 'wine' (iter 1/3)
INFO [19:14:19.170] [mlr3] Applying learner 'classif.rpart' on task 'wine' (iter 2/3)
INFO [19:14:19.208] [mlr3] Applying learner 'classif.rpart' on task 'wine' (iter 3/3)
INFO [19:14:19.256] [mlr3] Applying learner 'classif.xgboost' on task 'wine' (iter 1/3)
INFO [19:14:19.364] [mlr3] Applying learner 'classif.xgboost' on task 'wine' (iter 2/3)
INFO [19:14:19.482] [mlr3] Applying learner 'classif.xgboost' on task 'wine' (iter 3/3)
INFO [19:14:19.573] [mlr3] Applying learner 'classif.featureless' on task 'zoo' (iter 1/3)
INFO [19:14:19.599] [mlr3] Applying learner 'classif.featureless' on task 'zoo' (iter 2/3)
INFO [19:14:19.627] [mlr3] Applying learner 'classif.featureless' on task 'zoo' (iter 3/3)
INFO [19:14:19.653] [mlr3] Applying learner 'classif.rpart' on task 'zoo' (iter 1/3)
INFO [19:14:19.687] [mlr3] Applying learner 'classif.rpart' on task 'zoo' (iter 2/3)
INFO [19:14:19.722] [mlr3] Applying learner 'classif.rpart' on task 'zoo' (iter 3/3)
INFO [19:14:19.757] [mlr3] Applying learner 'classif.xgboost' on task 'zoo' (iter 1/3)
INFO [19:14:19.866] [mlr3] Applying learner 'classif.xgboost' on task 'zoo' (iter 2/3)
INFO [19:14:20.009] [mlr3] Applying learner 'classif.xgboost' on task 'zoo' (iter 3/3)
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
Warning in check.deprecation(deprecated_train_params, match.call(), ...) :
Passed invalid function arguments: nthread, num_class, eval_metric. These should be passed as a list to argument 'params'. Conversion from argument to 'params' entry will be done automatically, but this behavior will become an error in a future version.
Warning in check.custom.obj(params, objective) :
Argument 'objective' is only for custom objectives. For built-in objectives, pass the objective under 'params'. This warning will become an error in a future version.
INFO [19:14:20.181] [mlr3] Finished benchmark
Error: Global Friedman test non-significant (p > 0.05), try type = 'mean' instead.
Execution halted
- checking for unstated dependencies in 'tests' ... OK
- checking tests ... [10s] OK
Running 'testthat.R' [10s]
- checking PDF version of manual ... [18s] OK
- checking HTML version of manual ... [2s] OK
- DONE
Status: 1 ERROR