Last updated on 2025-12-25 19:51:01 CET.
| Package | ERROR | NOTE | OK |
|---|---|---|---|
| abclass | 3 | 3 | 7 |
| clusrank | 13 | ||
| dynsurv | 2 | 11 | |
| formatBibtex | 13 | ||
| intsurv | 2 | 11 | |
| jds.rmd | 13 | ||
| reda | 3 | 10 | |
| splines2 | 2 | 11 | |
| touch | 13 |
Current CRAN status: ERROR: 3, NOTE: 3, OK: 7
Version: 0.5.0
Check: examples
Result: ERROR
Running examples in ‘abclass-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### 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
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.5.0
Check: tests
Result: ERROR
Running ‘tinytest.R’ [2s/3s]
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.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;34m0.5s<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-debian-gcc
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
Current CRAN status: OK: 13
Current CRAN status: NOTE: 2, OK: 11
Version: 0.4-7
Check: installed package size
Result: NOTE
installed size is 5.6Mb
sub-directories of 1Mb or more:
libs 5.4Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: OK: 13
Current CRAN status: NOTE: 2, OK: 11
Version: 0.3.0
Check: installed package size
Result: NOTE
installed size is 11.8Mb
sub-directories of 1Mb or more:
libs 11.1Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: OK: 13
Current CRAN status: NOTE: 3, OK: 10
Version: 0.5.6
Check: installed package size
Result: NOTE
installed size is 7.1Mb
sub-directories of 1Mb or more:
doc 3.4Mb
libs 3.1Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Current CRAN status: NOTE: 2, OK: 11
Version: 0.5.4
Check: installed package size
Result: NOTE
installed size is 5.1Mb
sub-directories of 1Mb or more:
doc 1.2Mb
libs 3.4Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: OK: 13