Last updated on 2025-12-25 16:49:26 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.5.0 | 308.76 | 39.11 | 347.87 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.5.0 | 261.00 | 29.86 | 290.86 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.5.0 | 434.00 | 60.46 | 494.46 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 0.5.0 | 720.00 | 68.16 | 788.16 | ERROR | |
| r-devel-windows-x86_64 | 0.5.0 | 314.00 | 101.00 | 415.00 | OK | |
| r-patched-linux-x86_64 | 0.5.0 | 340.05 | 34.38 | 374.43 | OK | |
| r-release-linux-x86_64 | 0.5.0 | 344.24 | 34.69 | 378.93 | OK | |
| r-release-macos-arm64 | 0.5.0 | OK | ||||
| r-release-macos-x86_64 | 0.5.0 | 228.00 | 102.00 | 330.00 | OK | |
| r-release-windows-x86_64 | 0.5.0 | 327.00 | 104.00 | 431.00 | OK | |
| r-oldrel-macos-arm64 | 0.5.0 | NOTE | ||||
| r-oldrel-macos-x86_64 | 0.5.0 | 222.00 | 97.00 | 319.00 | NOTE | |
| r-oldrel-windows-x86_64 | 0.5.0 | 369.00 | 133.00 | 502.00 | NOTE |
Version: 0.5.0
Check: examples
Result: ERROR
Running examples in ‘abclass-Ex.R’ failed
The error most likely occurred in:
> ### Name: supclass
> ### Title: Multi-Category Classifiers with Sup-Norm Regularization
> ### Aliases: supclass supclass.control
>
> ### ** Examples
>
> library(abclass)
> set.seed(123)
>
> ## toy examples for demonstration purpose
> ## reference: example 1 in Zhang and Liu (2014)
> ntrain <- 100 # size of training set
> ntest <- 1000 # size of testing set
> p0 <- 2 # number of actual predictors
> p1 <- 2 # number of random predictors
> k <- 3 # number of categories
>
> n <- ntrain + ntest; p <- p0 + p1
> train_idx <- seq_len(ntrain)
> y <- sample(k, size = n, replace = TRUE) # response
> mu <- matrix(rnorm(p0 * k), nrow = k, ncol = p0) # mean vector
> ## normalize the mean vector so that they are distributed on the unit circle
> mu <- mu / apply(mu, 1, function(a) sqrt(sum(a ^ 2)))
> x0 <- t(sapply(y, function(i) rnorm(p0, mean = mu[i, ], sd = 0.25)))
> x1 <- matrix(rnorm(p1 * n, sd = 0.3), nrow = n, ncol = p1)
> x <- cbind(x0, x1)
> train_x <- x[train_idx, ]
> test_x <- x[- train_idx, ]
> y <- factor(paste0("label_", y))
> train_y <- y[train_idx]
> test_y <- y[- train_idx]
>
> ## regularization with the supnorm lasso penalty
> options("mc.cores" = 1)
> model <- supclass(train_x, train_y, model = "psvm", penalty = "lasso")
Error: The package 'qpmadr' is needed but not available.
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 0.5.0
Check: tests
Result: ERROR
Running ‘tinytest.R’
Running the tests in ‘tests/tinytest.R’ failed.
Complete output:
> if (requireNamespace("tinytest", quietly = TRUE) &&
+ utils::packageVersion("tinytest") >= "1.2.2") {
+ set.seed(808)
+ tinytest::test_package("abclass", ncpu = NULL,
+ side_effects = TRUE)
+ }
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 1 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 2 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 2 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 2 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 3 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 4 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 4 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 4 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 5 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 6 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 6 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 6 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 7 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 7 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 7 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 8 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 9 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 10 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 11 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 12 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 12 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 13 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 13 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 13 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 14 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m2.9s<1b>[0m
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 1 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 2 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 2 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 2 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 3 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 4 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 4 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 4 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 5 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 6 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 6 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 6 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 7 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 8 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 8 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 9 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 9 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 10 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 10 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 11 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 11 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 12 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 13 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 13 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 14 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 15 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m1.0s<1b>[0m
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests Error: The package 'qpmadr' is needed but not available.
Execution halted
Flavor: r-devel-linux-x86_64-fedora-clang
Version: 0.5.0
Check: tests
Result: ERROR
Running ‘tinytest.R’
Running the tests in ‘tests/tinytest.R’ failed.
Complete output:
> if (requireNamespace("tinytest", quietly = TRUE) &&
+ utils::packageVersion("tinytest") >= "1.2.2") {
+ set.seed(808)
+ tinytest::test_package("abclass", ncpu = NULL,
+ side_effects = TRUE)
+ }
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 0 tests
test-abclass.R................ 1 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 2 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 2 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 2 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 3 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 4 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 4 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 4 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 5 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 6 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 6 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 6 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 7 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 7 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 7 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 8 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 9 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 10 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 11 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 12 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 12 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 13 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 13 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 13 tests <1b>[0;32mOK<1b>[0m
test-abclass.R................ 14 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m3.0s<1b>[0m
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 0 tests
test-cv.abclass.R............. 1 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 2 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 2 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 2 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 3 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 4 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 4 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 4 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 5 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 6 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 6 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 6 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 7 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 8 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 8 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 9 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 9 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 10 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 10 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 11 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 11 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 12 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 13 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 13 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 14 tests <1b>[0;32mOK<1b>[0m
test-cv.abclass.R............. 15 tests <1b>[0;32mOK<1b>[0m <1b>[0;34m1.0s<1b>[0m
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests
test-cv.supclass.R............ 0 tests Error: The package 'qpmadr' is needed but not available.
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc
Version: 0.5.0
Check: installed package size
Result: NOTE
installed size is 68.4Mb
sub-directories of 1Mb or more:
libs 67.9Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64