Last updated on 2026-06-07 13:50:33 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.5 | 6.42 | 171.96 | 178.38 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.1.5 | 4.42 | 88.16 | 92.58 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.1.5 | 13.00 | 286.74 | 299.74 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.1.5 | 13.00 | 316.61 | 329.61 | OK | |
| r-devel-windows-x86_64 | 0.1.5 | 10.00 | 180.00 | 190.00 | OK | |
| r-patched-linux-x86_64 | 0.1.5 | 7.23 | 166.90 | 174.13 | OK | |
| r-release-linux-x86_64 | 0.1.5 | 5.85 | 168.02 | 173.87 | OK | |
| r-release-macos-arm64 | 0.1.5 | 2.00 | 47.00 | 49.00 | OK | |
| r-release-macos-x86_64 | 0.1.5 | 5.00 | 206.00 | 211.00 | OK | |
| r-release-windows-x86_64 | 0.1.5 | 10.00 | 175.00 | 185.00 | OK | |
| r-oldrel-macos-arm64 | 0.1.5 | OK | ||||
| r-oldrel-macos-x86_64 | 0.1.5 | 4.00 | 213.00 | 217.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.5 | 12.00 | 240.00 | 252.00 | OK |
Version: 0.1.5
Check: examples
Result: ERROR
Running examples in ‘multitool-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: reveal_model_warnings
> ### Title: Reveal any warnings about your models during a multiverse
> ### analysis
> ### Aliases: reveal_model_warnings
>
> ### ** Examples
>
>
> library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.2.1 ✔ readr 2.2.0
✔ forcats 1.0.1 ✔ stringr 1.6.0
✔ ggplot2 4.0.3 ✔ tibble 3.3.1
✔ lubridate 1.9.5 ✔ tidyr 1.3.2
✔ purrr 1.2.2
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
> library(multitool)
>
> # Simulate some data
> the_data <-
+ data.frame(
+ id = 1:500,
+ iv1 = rnorm(500),
+ iv2 = rnorm(500),
+ iv3 = rnorm(500),
+ mod1 = rnorm(500),
+ mod2 = rnorm(500),
+ mod3 = rnorm(500),
+ cov1 = rnorm(500),
+ cov2 = rnorm(500),
+ dv1 = rnorm(500),
+ dv2 = rnorm(500),
+ include1 = rbinom(500, size = 1, prob = .1),
+ include2 = sample(1:3, size = 500, replace = TRUE),
+ include3 = rnorm(500)
+ )
>
> # Decision pipeline
> full_pipeline <-
+ the_data |>
+ add_filters(include1 == 0,include2 != 3,include2 != 2,scale(include3) > -2.5) |>
+ add_variables("ivs", iv1, iv2, iv3) |>
+ add_variables("dvs", dv1, dv2) |>
+ add_variables("mods", starts_with("mod")) |>
+ add_model("linear_model", lm({dvs} ~ {ivs} * {mods} + cov1))
>
> pipeline_grid <- expand_decisions(full_pipeline)
>
> # Run the whole multiverse
> the_multiverse <- run_multiverse(pipeline_grid[1:10,])
Warning in file() :
cannot open file '/tmp/RtmpXwEYfg/Rf1daec774d81145': No space left on device
Error in `purrr::map()`:
ℹ In index: 1.
Caused by error in `map2()`:
ℹ In index: 1.
ℹ With name: model.
Caused by error in `file()`:
! cannot open the connection
Backtrace:
▆
1. ├─multitool::run_multiverse(pipeline_grid[1:10, ])
2. │ ├─purrr::list_rbind(...)
3. │ │ └─purrr:::check_list_of_data_frames(x)
4. │ │ └─vctrs::obj_check_list(x, call = error_call)
5. │ └─purrr::map(...)
6. │ └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
7. │ ├─purrr:::with_indexed_errors(...)
8. │ │ └─base::withCallingHandlers(...)
9. │ ├─purrr:::call_with_cleanup(...)
10. │ └─multitool (local) .f(.x[[i]], ...)
11. │ └─multitool:::run_universe_model(...)
12. │ └─purrr::map2_dfc(...)
13. │ └─purrr::map2(.x, .y, .f, ...)
14. │ └─purrr:::map2_("list", .x, .y, .f, ..., .progress = .progress)
15. │ ├─purrr:::with_indexed_errors(...)
16. │ │ └─base::withCallingHandlers(...)
17. │ ├─purrr:::call_with_cleanup(...)
18. │ └─multitool (local) .f(.x[[i]], .y[[i]], ...)
19. │ └─multitool:::collect_quiet_results_easy(...)
20. │ └─purrr (local) run_universe_code_quietly(...)
21. │ └─purrr:::capture_output(.f(...))
22. │ └─base::file()
23. └─base::.handleSimpleError(...)
24. └─purrr (local) h(simpleError(msg, call))
25. └─cli::cli_abort(...)
26. └─rlang::abort(...)
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
reveal_corrs 4.052 0.027 5.105
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.1.5
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
...
--- re-building ‘create-your-blueprint.Rmd’ using rmarkdown
--- finished re-building ‘create-your-blueprint.Rmd’
--- re-building ‘multitool-nomenclature.Rmd’ using rmarkdown
--- finished re-building ‘multitool-nomenclature.Rmd’
--- re-building ‘run-your-pipeline.Rmd’ using rmarkdown
Quitting from run-your-pipeline.Rmd:21-55 [setup]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<error/purrr_error_indexed>
Error in `purrr::map()`:
ℹ In index: 25.
Caused by error in `map2()`:
ℹ In index: 1.
ℹ With name: model.
Caused by error in `file()`:
! cannot open the connection
---
Backtrace:
▆
1. └─multitool::run_multiverse(expanded_pipeline)
2. ├─purrr::list_rbind(...)
3. │ └─purrr:::check_list_of_data_frames(x)
4. │ └─vctrs::obj_check_list(x, call = error_call)
5. └─purrr::map(...)
6. └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
7. ├─purrr:::with_indexed_errors(...)
8. │ └─base::withCallingHandlers(...)
9. ├─purrr:::call_with_cleanup(...)
10. └─multitool (local) .f(.x[[i]], ...)
11. └─multitool:::run_universe_model(...)
12. └─purrr::map2_dfc(...)
13. └─purrr::map2(.x, .y, .f, ...)
14. └─purrr:::map2_("list", .x, .y, .f, ..., .progress = .progress)
15. ├─purrr:::with_indexed_errors(...)
16. │ └─base::withCallingHandlers(...)
17. ├─purrr:::call_with_cleanup(...)
18. └─multitool (local) .f(.x[[i]], .y[[i]], ...)
19. └─multitool:::collect_quiet_results_easy(...)
20. └─purrr (local) run_universe_code_quietly(...)
21. └─purrr:::capture_output(.f(...))
22. └─base::file()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'run-your-pipeline.Rmd' failed with diagnostics:
ℹ In index: 25.
Caused by error in `map2()`:
ℹ In index: 1.
ℹ With name: model.
Caused by error in `file()`:
! cannot open the connection
--- failed re-building ‘run-your-pipeline.Rmd’
--- re-building ‘validate-your-blueprint.Rmd’ using rmarkdown
--- finished re-building ‘validate-your-blueprint.Rmd’
SUMMARY: processing the following file failed:
‘run-your-pipeline.Rmd’
Error: Vignette re-building failed.
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc