CRAN Package Check Results for Package data.table

Last updated on 2025-03-06 01:51:05 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.17.0 38.11 281.51 319.62 NOTE
r-devel-linux-x86_64-debian-gcc 1.17.0 32.38 185.74 218.12 ERROR
r-devel-linux-x86_64-fedora-clang 1.17.0 502.65 NOTE
r-devel-linux-x86_64-fedora-gcc 1.17.0 492.38 NOTE
r-devel-macos-arm64 1.17.0 180.00 NOTE
r-devel-macos-x86_64 1.17.0 287.00 NOTE
r-devel-windows-x86_64 1.17.0 80.00 264.00 344.00 NOTE
r-patched-linux-x86_64 1.17.0 OK
r-release-linux-x86_64 1.17.0 39.27 232.68 271.95 OK
r-release-macos-arm64 1.17.0 178.00 NOTE
r-release-macos-x86_64 1.17.0 306.00 NOTE
r-release-windows-x86_64 1.17.0 62.00 611.00 673.00 NOTE
r-oldrel-macos-arm64 1.17.0 135.00 NOTE
r-oldrel-macos-x86_64 1.17.0 269.00 NOTE
r-oldrel-windows-x86_64 1.17.0 61.00 741.00 802.00 NOTE

Check Details

Version: 1.17.0
Check: compiled code
Result: NOTE File ‘data.table/libs/data_table.so’: Found non-API calls to R: ‘LEVELS’, ‘OBJECT’, ‘SETLENGTH’, ‘SET_GROWABLE_BIT’, ‘SET_TRUELENGTH’, ‘TRUELENGTH’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 1.17.0
Check: compiled code
Result: NOTE File ‘data.table/libs/data_table.so’: Found non-API calls to R: ‘LEVELS’, ‘OBJECT’, ‘Rf_GetOption’, ‘Rf_isFrame’, ‘SETLENGTH’, ‘SET_GROWABLE_BIT’, ‘SET_TRUELENGTH’, ‘TRUELENGTH’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavor: r-devel-linux-x86_64-debian-gcc

Version: 1.17.0
Check: tests
Result: ERROR Running ‘S4.R’ [0s/1s] Running ‘autoprint.R’ [0s/0s] Comparing ‘autoprint.Rout’ to ‘autoprint.Rout.save’ ... OK Running ‘froll.R’ [14s/16s] Running ‘knitr.R’ [0s/1s] Comparing ‘knitr.Rout’ to ‘knitr.Rout.save’ ... OK Running ‘main.R’ [79s/76s] Running ‘nafill.R’ [1s/1s] Running ‘other.R’ [0s/0s] Running ‘programming.R’ [1s/1s] Running ‘types.R’ [0s/1s] Running the tests in ‘tests/main.R’ failed. Complete output: > require(data.table) Loading required package: data.table > > test.data.table() # runs the main test suite of 5,000+ tests in /inst/tests/tests.Rraw getDTthreads(verbose=TRUE): OpenMP version (_OPENMP) 201511 omp_get_num_procs() 64 R_DATATABLE_NUM_PROCS_PERCENT unset (default 50) R_DATATABLE_NUM_THREADS unset R_DATATABLE_THROTTLE unset (default 1024) omp_get_thread_limit() 3 omp_get_max_threads() 3 OMP_THREAD_LIMIT 3 OMP_NUM_THREADS 3 RestoreAfterFork true data.table is using 3 threads with throttle==1024. See ?setDTthreads. test.data.table() running: /home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/data.table/tests/tests.Rraw.bz2 Test 1552.2 ran without errors but failed check that x equals y: > x = fread(str, na.strings = c("#N/A", "-999")) a b c d [Key= Types=log,int,cha,log Classes=log,int,cha,log] 1: NA 1 5.5 FALSE 2: NA 5 6.6 TRUE 3: NA 1 <NA> NA 4: NA NA <NA> FALSE 5: NA 1 NA TRUE > y = read_table(str, na.strings = c("#N/A", "-999")) a b c d [Key= Types=log,int,cha,cha Classes=log,int,cha,cha] 1: NA 1 5.5 FALSE 2: NA 5 6.6 TRUE 3: NA 1 <NA> <NA> 4: NA NA <NA> FALSE 5: NA 1 NA TRUE Datasets have different column modes. First 3: d(logical!=character) Test 1552.3 ran without errors but failed check that x equals y: > x = fread(str, na.strings = c("#N/A", "-999", "+1")) a b c d [Key= Types=log,int,cha,log Classes=log,int,cha,log] 1: NA NA 5.5 FALSE 2: NA 5 6.6 TRUE 3: NA NA <NA> NA 4: NA NA <NA> FALSE 5: NA 1 NA TRUE > y = read_table(str, na.strings = c("#N/A", "-999", "+1")) a b c d [Key= Types=log,int,cha,cha Classes=log,int,cha,cha] 1: NA NA 5.5 FALSE 2: NA 5 6.6 TRUE 3: NA NA <NA> <NA> 4: NA NA <NA> FALSE 5: NA 1 NA TRUE Datasets have different column modes. First 3: d(logical!=character) Test 1552.4 ran without errors but failed check that x equals y: > x = fread(str, na.strings = c("#N/A", "-999", "+1", "1")) a b c d [Key= Types=log,int,cha,log Classes=log,int,cha,log] 1: NA NA 5.5 FALSE 2: NA 5 6.6 TRUE 3: NA NA <NA> NA 4: NA NA <NA> FALSE 5: NA NA NA TRUE > y = read_table(str, na.strings = c("#N/A", "-999", "+1", "1")) a b c d [Key= Types=log,int,cha,cha Classes=log,int,cha,cha] 1: NA NA 5.5 FALSE 2: NA 5 6.6 TRUE 3: NA NA <NA> <NA> 4: NA NA <NA> FALSE 5: NA NA NA TRUE Datasets have different column modes. First 3: d(logical!=character) Wed Mar 5 15:08:02 2025 endian==little, sizeof(long double)==16, longdouble.digits==64, sizeof(pointer)==8, TZ==unset, Sys.timezone()=='Europe/Vienna', Sys.getlocale()=='LC_CTYPE=C.UTF-8;LC_NUMERIC=C;LC_TIME=C.UTF-8;LC_COLLATE=C;LC_MONETARY=C.UTF-8;LC_MESSAGES=C.UTF-8;LC_PAPER=C.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C.UTF-8;LC_IDENTIFICATION=C', l10n_info()=='MBCS=TRUE; UTF-8=TRUE; Latin-1=FALSE; codeset=UTF-8', getDTthreads()=='OpenMP version (_OPENMP)==201511; omp_get_num_procs()==64; R_DATATABLE_NUM_PROCS_PERCENT==unset (default 50); R_DATATABLE_NUM_THREADS==unset; R_DATATABLE_THROTTLE==unset (default 1024); omp_get_thread_limit()==3; omp_get_max_threads()==3; OMP_THREAD_LIMIT==3; OMP_NUM_THREADS==3; RestoreAfterFork==true; data.table is using 3 threads with throttle==1024. See ?setDTthreads.', .libPaths()=='/tmp/RtmpykJ2qO/RLIBS_234a42222af267','/home/hornik/tmp/R.check/r-devel-gcc/Work/build/library', zlibVersion()==1.3.1 ZLIB_VERSION==1.3.1 Error in test.data.table() : 3 errors out of 11770. Search tests/tests.Rraw.bz2 for test numbers 1552.2, 1552.3, 1552.4. Duration: 00:01:15 elapsed (00:01:17 cpu). Calls: test.data.table -> stopf -> raise_condition -> signal Execution halted Flavor: r-devel-linux-x86_64-debian-gcc

Version: 1.17.0
Check: compiled code
Result: NOTE File ‘data.table/libs/data_table.so’: Found non-API calls to R: ‘LEVELS’, ‘SETLENGTH’, ‘SET_GROWABLE_BIT’, ‘SET_TRUELENGTH’, ‘TRUELENGTH’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavors: r-devel-macos-arm64, r-devel-macos-x86_64

Version: 1.17.0
Check: compiled code
Result: NOTE File 'data.table/libs/x64/data_table.dll': Found non-API calls to R: 'LEVELS', 'SETLENGTH', 'SET_GROWABLE_BIT', 'SET_TRUELENGTH', 'TRUELENGTH' Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual, and section 'Moving into C API compliance' for issues with the use of non-API entry points. Flavor: r-devel-windows-x86_64

Version: 1.17.0
Check: installed package size
Result: NOTE installed size is 6.4Mb sub-directories of 1Mb or more: libs 1.8Mb po 1.5Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64