Last updated on 2026-02-28 19:50:51 CET.
| Package | ERROR | NOTE | OK |
|---|---|---|---|
| Bessel | 14 | ||
| bitops | 14 | ||
| CLA | 14 | ||
| classGraph | 14 | ||
| cluster | 14 | ||
| cobs | 14 | ||
| copula | 3 | 11 | |
| diptest | 14 | ||
| DPQ | 14 | ||
| DPQmpfr | 14 | ||
| expm | 14 | ||
| fracdiff | 14 | ||
| lokern | 14 | ||
| longmemo | 14 | ||
| lpridge | 14 | ||
| nor1mix | 1 | 13 | |
| plugdensity | 2 | 12 | |
| Rmpfr | 14 | ||
| robustbase | 14 | ||
| robustX | 14 | ||
| round | 14 | ||
| sca | 2 | 12 | |
| sfsmisc | 14 | ||
| simest | 3 | 11 | |
| stabledist | 14 | ||
| supclust | 2 | 12 | |
| VLMC | 14 |
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: NOTE: 3, OK: 11
Version: 1.1-7
Check: installed package size
Result: NOTE
installed size is 7.9Mb
sub-directories of 1Mb or more:
R 2.4Mb
doc 3.2Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Version: 1.1-7
Flags: --no-vignettes
Check: installed package size
Result: NOTE
installed size is 7.4Mb
sub-directories of 1Mb or more:
R 2.1Mb
doc 3.2Mb
Flavor: r-oldrel-windows-x86_64
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: ERROR: 1, OK: 13
Version: 1.3-3
Check: tests
Result: ERROR
Running ‘MW.R’ [0s/0s]
Comparing ‘MW.Rout’ to ‘MW.Rout.save’ ... OK
Running ‘par.R’ [0s/0s]
Running ‘qnorMix-ex.R’ [0s/0s]
Running the tests in ‘tests/qnorMix-ex.R’ failed.
Complete output:
> ## Marron Wand examples are defined as norMix() calls in ../R/zMarrWand-dens.R
> library("nor1mix")
>
> ii <- c(32, 39, 40, 40, 48, 48, 49, 56, 57, 58, 65)
> pp <- 0.486 + ii / 100000 # very constrained set
>
> e <- norMix(mu = c(-0.825,0.275), sigma = sqrt(0.773), w = c(1, 3)/4)
>
> qnorMix(pp, e, trace = TRUE)
1: relE =2.995e-14
[1] -0.007781385 -0.007605111 -0.007579910 -0.007579910 -0.007378307
[6] -0.007378307 -0.007353107 -0.007176708 -0.007151508 -0.007126309
[11] -0.006949786
> ## failed for version <= 1.0-5
>
> q.pp <- -c(7.78151762922529, 7.60511100150266, 7.57991031275271, 7.57991031275271,
+ 7.37830712226037, 7.37830712226037, 7.35310701314534, 7.17670804948685,
+ 7.15150845450588, 7.12630892371882, 6.94991400429199) / 1000
>
> for (m in eval(formals(qnorMix)$method)) {
+ cat("method ", m,":")
+ stopifnot(all.equal(q.pp, qnorMix(pp, e, method = m, tol = 1e-14),
+ tol = 1e-13),# 1.022e-14 (32-bit)
+ abs(qnorMix(rep(1/2, 8), MW.nm10, method = m)) < 1e-14
+ )
+ cat("\n")
+ }
method interpQspline :
method interpspline :
method eachRoot :
method root2 :
>
> ### a "nasty" example (for the newton steps):
> ip <- c(0, 1e-11, 3.33e-09, 7.705488e-05, 0.0001670041, 0.00125378934,
+ 0.00141169953, 0.00357409109, 0.00644073795, 0.00853238955, 0.01361442421,
+ 0.01672761627, 0.02067755849, 0.02124092026, 0.03327537558, 0.03527226553,
+ 0.05365983941, 0.05482289811, 0.05669602608, 0.05982167629)
> qv <- qnorMix(1-ip, MW.nm12, trace=1)
,,1: relE =0.003125
2: relE =0.0005494
3: relE =7.656e-05
> ## now ok
>
> ### --- lower.tail=FALSE did not work correctly at some point
> qv. <- qnorMix(ip, MW.nm12, lower.tail=FALSE, trace=1)#2, maxiter=50)
,,1: relE =0.003125
2: relE =0.0005494
3: relE =7.656e-05
> stopifnot(all.equal(qv, qv., tol = 1e-5))
>
> ## qnorMix(*, log.p=TRUE) currently warns about missing Newton step implementation
> qnorMixLog <- function(p, obj, lower.tail = TRUE, ...)
+ suppressWarnings(qnorMix(p, obj, lower.tail=lower.tail, log.p=TRUE, ...))
> ##
> n2 <- 8
> set.seed(11)
> for(i in 1:50) {
+ cat(i, "", if(i %% 20 == 0)"\n")
+ u0 <- c(0,sort(runif(n2)),1)
+ q0 <- qnorMix(u0, MW.nm2, trace=0, tol=4e-16)
+ qL <- qnorMix(1-u0, MW.nm2, lower.tail=FALSE, trace=0, tol=4e-16)
+ stopifnot(all.equal(pnorMix(q0, MW.nm2), u0, tol=1e-15),
+ all.equal(q0, qL, tol=1e-14))
+ i. <- 2:(n2+1); u0. <- u0[i.]
+ ## --- log.p= TRUE [no Newton steps]
+ q0. <- qnorMixLog(log ( u0.), MW.nm2, tol=4e-16)
+ qL. <- qnorMixLog(log1p(-u0.), MW.nm2, lower.tail=FALSE, tol=4e-16)
+ stopifnot(all.equal(pnorMix(q0, MW.nm2), u0, tol=1e-15),
+ all.equal(q0, qL, tol=1e-14),
+ all.equal(q0., qL., tol=1e-10),
+ all.equal(q0[i.], q0., tol = 6e-6)# no Newton => less accuracy
+ )
+ }; cat("\n")
1 Error: q0 and qL are not equal:
Mean relative difference: 1.037164e-14
Execution halted
Flavor: r-devel-macos-arm64
Current CRAN status: NOTE: 2, OK: 12
Version: 0.8-5
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Martin Maechler <maechler@stat.math.ethz.ch>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = c("Eva", "Herrmann;", "R", "interface", "etc", "by", "Martin"),
family = "Maechler",
role = "aut",
email = "eherrmann@mathematik.tu-darmstadt.de",
comment = "C original"),
person(given = "Martin",
family = "Maechler",
role = "cre",
email = "maechler@stat.math.ethz.ch"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: OK: 14
Current CRAN status: NOTE: 2, OK: 12
Version: 0.9-2
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Martin Maechler <maechler@stat.math.ethz.ch>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = "Valentin",
family = "Rousson",
role = "aut",
email = "rousson@ifspm.unizh.ch"),
person(given = "Martin",
family = "Maechler",
role = c("aut", "cre"),
email = "maechler@stat.math.ethz.ch"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Current CRAN status: OK: 14
Current CRAN status: ERROR: 3, OK: 11
Version: 0.4-1-1
Check: tests
Result: ERROR
Running ‘ex_cvx.R’ [26s/26s]
Running ‘fastmerge-ex.R’ [1s/1s]
Running ‘smooth.pen_agcv.R’ [0s/1s]
Running the tests in ‘tests/smooth.pen_agcv.R’ failed.
Complete output:
> library(simest)
>
> ## Test smooth.pen.reg(*, agcv=TRUE) ---------------
>
> ## -- Using a subset of R's sunspots data ------
> osV <- abbreviate(gsub("[^[:alnum:]]", '', sub("\\(.*", '', osVersion)), 12)
>
> if(!dev.interactive(TRUE)) pdf(paste0("smooth.pen_sunsp__", osV, ".pdf"), width = 9, height=5)
>
> str(ssp <- window(sunspot.m2014, start = 1900))
Error: object 'sunspot.m2014' not found
Execution halted
Flavor: r-oldrel-macos-arm64
Version: 0.4-1-1
Check: tests
Result: ERROR
Running ‘ex_cvx.R’ [52s/122s]
Running ‘fastmerge-ex.R’ [4s/12s]
Running ‘smooth.pen_agcv.R’ [2s/5s]
Running the tests in ‘tests/smooth.pen_agcv.R’ failed.
Complete output:
> library(simest)
>
> ## Test smooth.pen.reg(*, agcv=TRUE) ---------------
>
> ## -- Using a subset of R's sunspots data ------
> osV <- abbreviate(gsub("[^[:alnum:]]", '', sub("\\(.*", '', osVersion)), 12)
>
> if(!dev.interactive(TRUE)) pdf(paste0("smooth.pen_sunsp__", osV, ".pdf"), width = 9, height=5)
>
> str(ssp <- window(sunspot.m2014, start = 1900))
Error: object 'sunspot.m2014' not found
Execution halted
Flavor: r-oldrel-macos-x86_64
Version: 0.4-1-1
Check: tests
Result: ERROR
Running 'ex_cvx.R' [85s]
Running 'fastmerge-ex.R' [6s]
Running 'smooth.pen_agcv.R' [2s]
Running the tests in 'tests/smooth.pen_agcv.R' failed.
Complete output:
> library(simest)
>
> ## Test smooth.pen.reg(*, agcv=TRUE) ---------------
>
> ## -- Using a subset of R's sunspots data ------
> osV <- abbreviate(gsub("[^[:alnum:]]", '', sub("\\(.*", '', osVersion)), 12)
>
> if(!dev.interactive(TRUE)) pdf(paste0("smooth.pen_sunsp__", osV, ".pdf"), width = 9, height=5)
>
> str(ssp <- window(sunspot.m2014, start = 1900))
Error: object 'sunspot.m2014' not found
Execution halted
Flavor: r-oldrel-windows-x86_64
Current CRAN status: OK: 14
Current CRAN status: NOTE: 2, OK: 12
Version: 1.1-1
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Martin Maechler <maechler@stat.math.ethz.ch>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = "Marcel",
family = "Dettling",
role = "aut",
email = "marcel.dettling@zhaw.ch"),
person(given = "Martin",
family = "Maechler",
role = c("aut", "cre"),
email = "maechler@stat.math.ethz.ch"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Current CRAN status: OK: 14