The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Last updated on 2026-09-25 00:50:25 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.8 | 7.62 | 222.04 | 229.66 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.1.8 | 5.50 | 163.37 | 168.87 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.1.8 | 146.34 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.1.8 | 151.12 | OK | |||
| r-devel-windows-x86_64 | 0.1.8 | 10.00 | 237.00 | 247.00 | OK | |
| r-patched-linux-x86_64 | 0.1.8 | 6.89 | 227.89 | 234.78 | OK | |
| r-release-linux-x86_64 | 0.1.7 | 7.37 | 64.84 | 72.21 | ERROR | |
| r-release-macos-arm64 | 0.1.8 | 2.00 | 60.00 | 62.00 | OK | |
| r-release-macos-x86_64 | 0.1.8 | 5.00 | 226.00 | 231.00 | OK | |
| r-release-windows-x86_64 | 0.1.7 | 11.00 | 138.00 | 149.00 | OK | |
| r-oldrel-macos-arm64 | 0.1.8 | OK | ||||
| r-oldrel-macos-x86_64 | 0.1.8 | 5.00 | 198.00 | 203.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.8 | 12.00 | 292.00 | 304.00 | OK |
Version: 0.1.7
Check: examples
Result: ERROR
Running examples in ‘veesa-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: compute_pfi
> ### Title: Compute permutation feature importance (PFI)
> ### Aliases: compute_pfi
>
> ### ** Examples
>
> # Load packages
> library(dplyr)
Attaching package: ‘dplyr’
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
> library(tidyr)
> library(randomForest)
randomForest 4.7-1.2
Type rfNews() to see new features/changes/bug fixes.
Attaching package: ‘randomForest’
The following object is masked from ‘package:dplyr’:
combine
>
> # Select a subset of functions from shifted peaks data
> sub_ids <-
+ shifted_peaks$data |>
+ select(data, group, id) |>
+ distinct() |>
+ group_by(data, group) |>
+ slice(1:4) |>
+ ungroup()
>
> # Create a smaller version of shifted data
> shifted_peaks_sub <-
+ shifted_peaks$data |>
+ filter(id %in% sub_ids$id)
>
> # Extract times
> shifted_peaks_times = unique(shifted_peaks_sub$t)
>
> # Convert training data to matrix
> shifted_peaks_train_matrix <-
+ shifted_peaks_sub |>
+ filter(data == "Training") |>
+ select(-t) |>
+ mutate(index = paste0("t", index)) |>
+ pivot_wider(names_from = index, values_from = y) |>
+ select(-data, -id, -group) |>
+ as.matrix() |>
+ t()
>
> # Obtain veesa pipeline training data
> veesa_train <-
+ prep_training_data(
+ f = shifted_peaks_train_matrix,
+ time = shifted_peaks_times,
+ fpca_method = "jfpca"
+ )
Error in `fdasrvf::time_warping()`:
! `penalty_method` must be one of "roughness", "l2gam", "l2psi",
"geodesic", "none", or "norm", not "roughness".
Backtrace:
▆
1. └─veesa::prep_training_data(...)
2. └─fdasrvf::time_warping(penalty_method = penalty_method)
3. ├─fdasrvf:::penalty_alias(rlang::arg_match(penalty_method))
4. └─rlang::arg_match(penalty_method)
5. └─rlang::abort(msg, call = error_call, arg = error_arg)
Execution halted
Flavor: r-release-linux-x86_64
Version: 0.1.7
Check: tests
Result: ERROR
Running ‘testthat.R’ [4s/6s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(veesa)
>
> test_check("veesa")
randomForest 4.7-1.2
Type rfNews() to see new features/changes/bug fixes.
Attaching package: 'dplyr'
The following object is masked from 'package:randomForest':
combine
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
Saving _problems/test-prep_testing_data-10.R
Saving _problems/test-prep_training_data-11.R
Saving _problems/test-prep_training_data-20.R
Saving _problems/test-prep_training_data-33.R
Saving _problems/test-prep_training_data-49.R
[ FAIL 5 | WARN 0 | SKIP 0 | PASS 16 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-prep_testing_data.R:10:1'): (code run outside of `test_that()`) ──
Error in `fdasrvf::time_warping(f = f, time = time, lambda = lambda, penalty_method = penalty_method, centroid_type = centroid_type, center_warpings = center_warpings, parallel = parallel, cores = cores, optim_method = optim_method, max_iter = max_iter)`: `penalty_method` must be one of "roughness", "l2gam", "l2psi", "geodesic", "none", or "norm", not "roughness".
Backtrace:
▆
1. └─veesa::prep_training_data(mock_f, mock_time, "jfpca") at test-prep_testing_data.R:10:1
2. └─fdasrvf::time_warping(penalty_method = penalty_method)
3. ├─fdasrvf:::penalty_alias(rlang::arg_match(penalty_method))
4. └─rlang::arg_match(penalty_method)
5. └─rlang::abort(msg, call = error_call, arg = error_arg)
── Error ('test-prep_training_data.R:11:3'): Output structure is correct ───────
Error in `fdasrvf::time_warping(f = f, time = time, lambda = lambda, penalty_method = penalty_method, centroid_type = centroid_type, center_warpings = center_warpings, parallel = parallel, cores = cores, optim_method = optim_method, max_iter = max_iter)`: `penalty_method` must be one of "roughness", "l2gam", "l2psi", "geodesic", "none", or "norm", not "roughness".
Backtrace:
▆
1. └─veesa::prep_training_data(mock_f, mock_time, "jfpca") at test-prep_training_data.R:11:3
2. └─fdasrvf::time_warping(penalty_method = penalty_method)
3. ├─fdasrvf:::penalty_alias(rlang::arg_match(penalty_method))
4. └─rlang::arg_match(penalty_method)
5. └─rlang::abort(msg, call = error_call, arg = error_arg)
── Error ('test-prep_training_data.R:20:3'): Function handles different fpca methods ──
Error in `fdasrvf::time_warping(f = f, time = time, lambda = lambda, penalty_method = penalty_method, centroid_type = centroid_type, center_warpings = center_warpings, parallel = parallel, cores = cores, optim_method = optim_method, max_iter = max_iter)`: `penalty_method` must be one of "roughness", "l2gam", "l2psi", "geodesic", "none", or "norm", not "roughness".
Backtrace:
▆
1. └─veesa::prep_training_data(mock_f, mock_time, fpca_method = "jfpca") at test-prep_training_data.R:20:3
2. └─fdasrvf::time_warping(penalty_method = penalty_method)
3. ├─fdasrvf:::penalty_alias(rlang::arg_match(penalty_method))
4. └─rlang::arg_match(penalty_method)
5. └─rlang::abort(msg, call = error_call, arg = error_arg)
── Error ('test-prep_training_data.R:30:3'): Function throws error with incorrect fpca_method ──
Error in `fdasrvf::time_warping(f = f, time = time, lambda = lambda, penalty_method = penalty_method, centroid_type = centroid_type, center_warpings = center_warpings, parallel = parallel, cores = cores, optim_method = optim_method, max_iter = max_iter)`: `penalty_method` must be one of "roughness", "l2gam", "l2psi", "geodesic", "none", or "norm", not "roughness".
Backtrace:
▆
1. ├─testthat::expect_error(...) at test-prep_training_data.R:30:3
2. │ └─testthat:::expect_condition_matching_(...)
3. │ └─testthat:::quasi_capture(...)
4. │ ├─testthat (local) .capture(...)
5. │ │ └─base::withCallingHandlers(...)
6. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo))
7. └─veesa::prep_training_data(mock_f, mock_time, fpca_method = "invalid_method")
8. └─fdasrvf::time_warping(penalty_method = penalty_method)
9. ├─fdasrvf:::penalty_alias(rlang::arg_match(penalty_method))
10. └─rlang::arg_match(penalty_method)
11. └─rlang::abort(msg, call = error_call, arg = error_arg)
── Error ('test-prep_training_data.R:49:3'): Default values for optional parameters are set correctly ──
Error in `fdasrvf::time_warping(f = f, time = time, lambda = lambda, penalty_method = penalty_method, centroid_type = centroid_type, center_warpings = center_warpings, parallel = parallel, cores = cores, optim_method = optim_method, max_iter = max_iter)`: `penalty_method` must be one of "roughness", "l2gam", "l2psi", "geodesic", "none", or "norm", not "roughness".
Backtrace:
▆
1. └─veesa::prep_training_data(mock_f, mock_time, fpca_method = "jfpca") at test-prep_training_data.R:49:3
2. └─fdasrvf::time_warping(penalty_method = penalty_method)
3. ├─fdasrvf:::penalty_alias(rlang::arg_match(penalty_method))
4. └─rlang::arg_match(penalty_method)
5. └─rlang::abort(msg, call = error_call, arg = error_arg)
[ FAIL 5 | WARN 0 | SKIP 0 | PASS 16 ]
Error:
! Test failures.
Execution halted
Flavor: r-release-linux-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.