Last updated on 2025-12-20 08:48:53 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.1 | 2.53 | 116.11 | 118.64 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.1.1 | 1.86 | 47.61 | 49.47 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.1.1 | 106.92 | ERROR | |||
| r-devel-linux-x86_64-fedora-gcc | 0.1.1 | 114.18 | ERROR | |||
| r-devel-windows-x86_64 | 0.1.1 | 5.00 | 116.00 | 121.00 | OK | |
| r-patched-linux-x86_64 | 0.1.1 | 2.73 | 105.61 | 108.34 | OK | |
| r-release-linux-x86_64 | 0.1.1 | 2.59 | 105.87 | 108.46 | OK | |
| r-release-macos-arm64 | 0.1.1 | OK | ||||
| r-release-macos-x86_64 | 0.1.1 | 2.00 | 160.00 | 162.00 | OK | |
| r-release-windows-x86_64 | 0.1.1 | 6.00 | 114.00 | 120.00 | OK | |
| r-oldrel-macos-arm64 | 0.1.1 | OK | ||||
| r-oldrel-macos-x86_64 | 0.1.1 | 2.00 | 167.00 | 169.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.1 | 7.00 | 147.00 | 154.00 | OK |
Version: 0.1.1
Check: examples
Result: ERROR
Running examples in ‘parttree-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: geom_parttree
> ### Title: Visualize tree partitions with ggplot2
> ### Aliases: geom_parttree
>
> ### ** Examples
>
> # install.packages("ggplot2")
> library(ggplot2) # ggplot2 must be installed/loaded separately
>
> library(parttree) # this package
> library(rpart) # decision trees
> ## Don't show:
> data.table::setDTthreads(2)
> ## End(Don't show)
> #
> ## Simple decision tree (max of two predictor variables)
>
> iris_tree = rpart(Species ~ Petal.Length + Petal.Width, data=iris)
>
> # Plot with original iris data only
> p = ggplot(data = iris, aes(x = Petal.Length, y = Petal.Width)) +
+ geom_point(aes(col = Species))
>
> # Add tree partitions to the plot (borders only)
> p + geom_parttree(data = iris_tree)
Error in `[.data.table`(part_dt, , `:=`(path, paste(variable, side, split, :
attempt access index 5/5 in VECTOR_ELT
Calls: geom_parttree -> parttree -> parttree.rpart -> [ -> [.data.table
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.1.1
Check: tests
Result: ERROR
Running ‘tinytest.R’ [2s/2s]
Running the tests in ‘tests/tinytest.R’ failed.
Complete output:
>
> if ( requireNamespace("tinytest", quietly=TRUE) ){
+ Sys.setenv("OMP_THREAD_LIMIT" = 2) # https://github.com/Rdatatable/data.table/issues/5658
+ tinytest::test_package("parttree")
+ }
test_ctree.R.................. 0 tests Loading required package: partykit
Loading required package: grid
Loading required package: libcoin
Loading required package: mvtnorm
test_ctree.R.................. 1 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m1.3s<1b>[0m
Loading required package: mlr3
Error in `[.data.table`(part_dt, , `:=`(path, paste(variable, side, split, :
attempt access index 5/5 in VECTOR_ELT
Calls: <Anonymous> ... parttree.LearnerClassifRpart -> parttree.rpart -> [ -> [.data.table
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.1.1
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
...
--- re-building ‘parttree-art.Rmd’ using rmarkdown
Quitting from parttree-art.Rmd:168-182 [rosalba_abstract]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<error/rlang_error>
Error in `[.data.table`:
! attempt access index 5/5 in VECTOR_ELT
---
Backtrace:
▆
1. └─base::lapply(trees, parttree)
2. ├─parttree (local) FUN(X[[i]], ...)
3. └─parttree:::parttree.rpart(X[[i]], ...)
4. ├─...[]
5. └─data.table:::`[.data.table`(...)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'parttree-art.Rmd' failed with diagnostics:
attempt access index 5/5 in VECTOR_ELT
--- failed re-building ‘parttree-art.Rmd’
--- re-building ‘parttree-intro.Rmd’ using rmarkdown
Quitting from parttree-intro.Rmd:70-73 [penguin_cl_plot]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<error/rlang_error>
Error in `[.data.table`:
! attempt access index 5/5 in VECTOR_ELT
---
Backtrace:
▆
1. ├─parttree::parttree(tree)
2. └─parttree:::parttree.rpart(tree)
3. ├─...[]
4. └─data.table:::`[.data.table`(...)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'parttree-intro.Rmd' failed with diagnostics:
attempt access index 5/5 in VECTOR_ELT
--- failed re-building ‘parttree-intro.Rmd’
SUMMARY: processing the following files failed:
‘parttree-art.Rmd’ ‘parttree-intro.Rmd’
Error: Vignette re-building failed.
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.1.1
Check: examples
Result: ERROR
Running examples in ‘parttree-Ex.R’ failed
The error most likely occurred in:
> ### Name: geom_parttree
> ### Title: Visualize tree partitions with ggplot2
> ### Aliases: geom_parttree
>
> ### ** Examples
>
> # install.packages("ggplot2")
> library(ggplot2) # ggplot2 must be installed/loaded separately
>
> library(parttree) # this package
> library(rpart) # decision trees
> ## Don't show:
> data.table::setDTthreads(2)
> ## End(Don't show)
> #
> ## Simple decision tree (max of two predictor variables)
>
> iris_tree = rpart(Species ~ Petal.Length + Petal.Width, data=iris)
>
> # Plot with original iris data only
> p = ggplot(data = iris, aes(x = Petal.Length, y = Petal.Width)) +
+ geom_point(aes(col = Species))
>
> # Add tree partitions to the plot (borders only)
> p + geom_parttree(data = iris_tree)
Error in `[.data.table`(part_dt, , `:=`(path, paste(variable, side, split, :
attempt access index 5/5 in VECTOR_ELT
Calls: geom_parttree -> parttree -> parttree.rpart -> [ -> [.data.table
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 0.1.1
Check: tests
Result: ERROR
Running ‘tinytest.R’
Running the tests in ‘tests/tinytest.R’ failed.
Complete output:
>
> if ( requireNamespace("tinytest", quietly=TRUE) ){
+ Sys.setenv("OMP_THREAD_LIMIT" = 2) # https://github.com/Rdatatable/data.table/issues/5658
+ tinytest::test_package("parttree")
+ }
test_ctree.R.................. 0 tests Loading required package: partykit
Loading required package: grid
Loading required package: libcoin
Loading required package: mvtnorm
test_ctree.R.................. 1 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m5.3s<1b>[0m
Loading required package: mlr3
Error in `[.data.table`(part_dt, , `:=`(path, paste(variable, side, split, :
attempt access index 5/5 in VECTOR_ELT
Calls: <Anonymous> ... parttree.LearnerClassifRpart -> parttree.rpart -> [ -> [.data.table
Execution halted
Flavor: r-devel-linux-x86_64-fedora-clang
Version: 0.1.1
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
--- re-building ‘parttree-art.Rmd’ using rmarkdown
Quitting from parttree-art.Rmd:168-182 [rosalba_abstract]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<error/rlang_error>
Error in `[.data.table`:
! attempt access index 5/5 in VECTOR_ELT
---
Backtrace:
▆
1. └─base::lapply(trees, parttree)
2. ├─parttree (local) FUN(X[[i]], ...)
3. └─parttree:::parttree.rpart(X[[i]], ...)
4. ├─...[]
5. └─data.table:::`[.data.table`(...)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'parttree-art.Rmd' failed with diagnostics:
attempt access index 5/5 in VECTOR_ELT
--- failed re-building ‘parttree-art.Rmd’
--- re-building ‘parttree-intro.Rmd’ using rmarkdown
Quitting from parttree-intro.Rmd:70-73 [penguin_cl_plot]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<error/rlang_error>
Error in `[.data.table`:
! attempt access index 5/5 in VECTOR_ELT
---
Backtrace:
▆
1. ├─parttree::parttree(tree)
2. └─parttree:::parttree.rpart(tree)
3. ├─...[]
4. └─data.table:::`[.data.table`(...)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'parttree-intro.Rmd' failed with diagnostics:
attempt access index 5/5 in VECTOR_ELT
--- failed re-building ‘parttree-intro.Rmd’
SUMMARY: processing the following files failed:
‘parttree-art.Rmd’ ‘parttree-intro.Rmd’
Error: Vignette re-building failed.
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 0.1.1
Check: tests
Result: ERROR
Running ‘tinytest.R’
Running the tests in ‘tests/tinytest.R’ failed.
Complete output:
>
> if ( requireNamespace("tinytest", quietly=TRUE) ){
+ Sys.setenv("OMP_THREAD_LIMIT" = 2) # https://github.com/Rdatatable/data.table/issues/5658
+ tinytest::test_package("parttree")
+ }
test_ctree.R.................. 0 tests Loading required package: partykit
Loading required package: grid
Loading required package: libcoin
Loading required package: mvtnorm
test_ctree.R.................. 1 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m4.6s<1b>[0m
Loading required package: mlr3
Error in `[.data.table`(part_dt, , `:=`(path, paste(variable, side, split, :
attempt access index 5/5 in VECTOR_ELT
Calls: <Anonymous> ... parttree.LearnerClassifRpart -> parttree.rpart -> [ -> [.data.table
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc