Last updated on 2025-12-18 09:49:39 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.6 | 22.62 | 111.57 | 134.19 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.1.6 | 15.99 | 80.75 | 96.74 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.1.6 | 37.00 | 179.14 | 216.14 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 38.00 | FAIL | ||||
| r-devel-windows-x86_64 | 0.1.6 | 25.00 | 114.00 | 139.00 | OK | |
| r-patched-linux-x86_64 | 0.1.6 | 23.32 | 101.46 | 124.78 | OK | |
| r-release-linux-x86_64 | 0.1.6 | 18.92 | 102.92 | 121.84 | OK | |
| r-release-macos-arm64 | 0.1.6 | OK | ||||
| r-release-macos-x86_64 | 0.1.6 | 12.00 | 135.00 | 147.00 | OK | |
| r-release-windows-x86_64 | 0.1.6 | 24.00 | 111.00 | 135.00 | OK | |
| r-oldrel-macos-arm64 | 0.1.6 | OK | ||||
| r-oldrel-macos-x86_64 | 0.1.6 | 12.00 | 87.00 | 99.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.6 | 30.00 | 143.00 | 173.00 | OK |
Version: 0.1.6
Check: examples
Result: ERROR
Running examples in ‘counterfactuals-Ex.R’ failed
The error most likely occurred in:
> ### Name: RandomSearchRegr
> ### Title: Random Search for Regression Tasks
> ### Aliases: RandomSearchRegr
>
> ### ** Examples
>
> if (require("randomForest")) {
+ # Train a model
+ rf = randomForest(mpg ~ ., data = mtcars)
+ # Create a predictor object
+ predictor = iml::Predictor$new(rf)
+ # Find counterfactuals for x_interest
+ rs_regr = RandomSearchRegr$new(predictor, n_generations = 30L)
+ cfactuals = rs_regr$find_counterfactuals(x_interest = mtcars[1L, ], desired_outcome = c(22, 26))
+ # Print the counterfactuals
+ cfactuals$data
+ # Plot evolution of hypervolume and mean and minimum objective values
+ rs_regr$plot_statistics()
+ }
Loading required package: randomForest
randomForest 4.7-1.2
Type rfNews() to see new features/changes/bug fixes.
Flavor: r-devel-linux-x86_64-fedora-gcc
Version: 0.1.6
Check: HTML version of manual
Result: FAIL
Flavor: r-devel-linux-x86_64-fedora-gcc