* using log directory ‘/srv/hornik/tmp/CRAN/rapidsplithalf.Rcheck’ * using R Under development (unstable) (2024-06-24 r86824) * using platform: x86_64-pc-linux-gnu * R was compiled by Debian clang version 18.1.5 (2) Debian flang-new version 18.1.5 (2) * running under: Debian GNU/Linux trixie/sid * using session charset: UTF-8 * checking for file ‘rapidsplithalf/DESCRIPTION’ ... OK * checking extension type ... Package * this is package ‘rapidsplithalf’ version ‘0.2’ * package encoding: UTF-8 * checking CRAN incoming feasibility ... [3s/6s] NOTE Maintainer: ‘Sercan Kahveci ’ New submission The Title field should be in title case. Current version is: ‘A fast split-half reliability algorithm’ In title case that is: ‘A Fast Split-Half Reliability Algorithm’ Found the following URLs which should use \doi (with the DOI name only): File ‘foodAAT.Rd’: https://doi.org/10.1016/j.appet.2018.01.032 File ‘raceIAT.Rd’: https://doi.org/10.5334/jopd.ac * checking package namespace information ... OK * checking package dependencies ... OK * 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 ‘rapidsplithalf’ can be installed ... [18s/18s] WARNING Found the following significant warnings: matrixAggregators.cpp:272:9: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical] See ‘/srv/hornik/tmp/CRAN/rapidsplithalf.Rcheck/00install.out’ for details. * used C++ compiler: ‘Debian clang version 18.1.8 (1)’ * checking package directory ... OK * checking for future file timestamps ... OK * checking ‘build’ directory ... 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 ... [0s/0s] OK * checking whether the package can be loaded with stated dependencies ... [0s/0s] OK * checking whether the package can be unloaded cleanly ... [0s/0s] OK * checking whether the namespace can be loaded with stated dependencies ... [0s/0s] OK * checking whether the namespace can be unloaded cleanly ... [0s/0s] OK * checking loading without being on the library search path ... [0s/0s] 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 ... [3s/3s] 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 data for ASCII and uncompressed saves ... OK * checking line endings in C/C++/Fortran sources/headers ... OK * checking pragmas in C/C++ headers and code ... OK * checking compilation flags used ... OK * checking compiled code ... OK * checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... [3s/3s] ERROR Running examples in ‘rapidsplithalf-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: rapidsplit > ### Title: rapidsplit > ### Aliases: rapidsplit print.rapidsplit plot.rapidsplit rapidsplit.chunks > > ### ** Examples > > > data(foodAAT) > # Reliability of the double difference score: > # [RT(push food)-RT(pull food)] - [RT(push object)-RT(pull object)] > > frel<-rapidsplit(data=foodAAT, + subjvar="subjectid", + diffvars=c("is_pull","is_target"), + stratvars="stimid", + aggvar="RT", + splits=100) Generating splits... ================================================================================ Aggregating conditions... ================================================================================ > > print(frel) Full-length reliability (Spearman-Brown coefficient): rSB (34) = .87, 95%CI [.78, .93], p = 0, based on 100 permutations > > plot(frel,type="all") > > > # Compute a single random split-half reliability of the error rate > rapidsplit(data=foodAAT, + subjvar="subjectid", + aggvar="error", + splits=1, + aggfunc="means") Generating splits... ================================================================================ Aggregating conditions... ================================================================================ Full-length reliability (Spearman-Brown coefficient): rSB (34) = .91, 95%CI [.91, .91], p = 0, based on 1 permutations > > # Compute the reliability of an IAT D-score > data(raceIAT) > rapidsplit(data=raceIAT, + subjvar="session_id", + diffvars="congruent", + subscorevar="blocktype", + aggvar="latency", + errorhandling=list(type="fixedpenalty",errorvar="error", + fixedpenalty=600,blockvar="block_number"), + splits=100, + standardize=TRUE) Generating splits... ================================================================================ Replacing error trials ================================================================================ Aggregating conditions... ================================================================================ Computing standard deviations to standardize scores by... ================================================================================ Full-length reliability (Spearman-Brown coefficient): rSB (198) = .84, 95%CI [.76, .89], p = 0, based on 100 permutations > > > # Unstratified reliability of the median RT > rapidsplit.chunks(data=foodAAT, + subjvar="subjectid", + aggvar="RT", + splits=100, + aggfunc="medians", + chunks=8) Running rapidsplit() in chunks... ================================================================================ Full-length reliability (Spearman-Brown coefficient): rSB (34) = .98, 95%CI [.97, .99], p = 0, based on 100 permutations > > # Compute the reliability of Tukey's trimean of the RT > # on 2 CPU cores > trimean<-function(x){ + sum(quantile(x,c(.25,.5,.75))*c(1,2,1))/4 + } > rapidsplit.chunks(data=foodAAT, + subjvar="subjectid", + aggvar="RT", + splits=200, + aggfunc=trimean, + cluster=2) Error in e$fun(obj, substitute(ex), parent.frame(), e$data) : worker initialization failed: there is no package called ‘rapidsplit’ Calls: rapidsplit.chunks -> %dopar% -> Execution halted * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... [33s/33s] OK * checking PDF version of manual ... [3s/3s] 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, 1 WARNING, 1 NOTE