* using log directory ‘/srv/hornik/tmp/CRAN_pretest/confintROB.Rcheck’ * using R Under development (unstable) (2026-01-25 r89330) * using platform: x86_64-pc-linux-gnu * R was compiled by Debian clang version 21.1.8 (1+b1) Debian flang version 21.1.8 (1+b1) * running under: Debian GNU/Linux forky/sid * using session charset: UTF-8 * checking for file ‘confintROB/DESCRIPTION’ ... OK * checking extension type ... Package * this is package ‘confintROB’ version ‘1.1-0’ * package encoding: UTF-8 * checking CRAN incoming feasibility ... [3s/4s] OK * checking package namespace information ... OK * checking package dependencies ... INFO Package suggested but not available for checking: ‘robustvarComp’ * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package ‘confintROB’ can be installed ... [5s/5s] OK * checking package directory ... OK * checking for future file timestamps ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... [1s/1s] OK * checking whether the package can be loaded with stated dependencies ... [1s/1s] OK * checking whether the package can be unloaded cleanly ... [1s/1s] OK * checking whether the namespace can be loaded with stated dependencies ... [1s/1s] OK * checking whether the namespace can be unloaded cleanly ... [1s/1s] OK * checking loading without being on the library search path ... [1s/1s] OK * checking use of S3 registration ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... [7s/7s] OK * checking Rd files ... [0s/0s] OK * checking Rd metadata ... OK * checking Rd line widths ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of ‘data’ directory ... OK * checking data for non-ASCII characters ... [0s/0s] OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking examples ... [4s/4s] OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... [10s/12s] ERROR Running ‘confintrob_test.R’ [6s/6s] Comparing ‘confintrob_test.Rout’ to ‘confintrob_test.Rout.save’ ... OK Running ‘parallelTest.R’ [2s/4s] Running ‘varComprob_createParamSampleFunction.R’ [1s/1s] Running the tests in ‘tests/varComprob_createParamSampleFunction.R’ failed. Complete output: > require(confintROB) Loading required package: confintROB > require(lme4) Loading required package: lme4 Loading required package: Matrix > require(robustvarComp) Loading required package: robustvarComp Warning message: In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, : there is no package called 'robustvarComp' > > test.varComprob <- + function(object, data = sleepstudy) { + cat("Running test for object of class ", class(object), "\n") + sample <- confintROB:::createParamSampleFunction(model = object, + data = data) + set.seed(123) + result11 <- c(sample(1), sample(1)) + set.seed(123) + result2 <- sample(2) + names(result11) <- names(result2) + stopifnot(all.equal(result11, result2)) + return(result2) + } > > participant <- sleepstudy$Subject > within <- sleepstudy$Days > > # Build the argument "groups" of the varComprob() function > n <- length(unique(participant)) # the number of participants > J <- + length(unique(within)) # the number of repeated observations per participant > groups <- + cbind(rep(1:J, each = n), rep((1:n), J)) # a numeric matrix with two columns used to group the observations according to participant. > > # Build the argument "varcov" of the varComprob() function > z1 <- + rep(1, J) #Value for intercept (=1) for the J observations by clusters > z2 <- unique(within) # Value for the time variable > > K <- + list( + # Matrix for intercept + sigma2_u0 = tcrossprod(z1, z1), + # Matrix of interaction Intercept by time variable + Covariance = tcrossprod(z1, z2) + tcrossprod(z2, z1), + # Matrix for time variable + sigma2_u1 = tcrossprod(z2, z2) + ) > > # Estimation with S-estimator > suppressWarnings( + model.S <- + varComprob( + Reaction ~ 1 + Days, + groups = groups, + data = sleepstudy, + varcov = K, + control = varComprob.control( + lower = c(0, -Inf, 0), + method = "S", + psi = "rocke", + max.it = 1, + init = list( + beta = c("(Intercept)" = 253.835569743834, Days = 10.7736608268214), + gamma = c( + sigma2_u0 = 1.59549700005736, + Covariance = -0.0711447985744645, + sigma2_u1 = 0.0765023178239254 + ), + eta0 = c("error variance" = 692.556625895202), + scale = 10752.1432565101 + ) + ) + ) + ) Error in varComprob(Reaction ~ 1 + Days, groups = groups, data = sleepstudy, : could not find function "varComprob" Execution halted * checking PDF version of manual ... [2s/2s] OK * checking HTML version of manual ... [0s/0s] OK * checking for non-standard things in the check directory ... OK * checking for detritus in the temp directory ... OK * DONE Status: 1 ERROR