* using log directory 'd:/Rcompile/CRANpkg/local/4.6/modelc.Rcheck' * using R version 4.6.1 (2026-06-24 ucrt) * using platform: x86_64-w64-mingw32 * R was compiled by gcc.exe (GCC) 14.3.0 GNU Fortran (GCC) 14.3.0 * running under: Windows Server 2022 x64 (build 20348) * using session charset: UTF-8 * current time: 2026-08-12 22:56:08 UTC * checking for file 'modelc/DESCRIPTION' ... OK * this is package 'modelc' version '1.0.0.0' * package encoding: UTF-8 * 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 hidden files and directories ... OK * checking for portable file names ... OK * checking whether package 'modelc' can be installed ... OK * checking installed package size ... OK * checking package 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] OK * checking whether the package can be loaded with stated dependencies ... [0s] OK * checking whether the package can be unloaded cleanly ... [0s] OK * checking whether the namespace can be loaded with stated dependencies ... [0s] OK * checking whether the namespace can be unloaded cleanly ... [0s] OK * checking loading without being on the library search path ... [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 ... [2s] OK * checking Rd files ... [0s] OK * checking Rd metadata ... 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 LazyData ... INFO 'LazyData' is specified without a 'data' directory * checking examples ... [1s] OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... [1s] OK Running 'testthat.R' [1s] * checking PDF version of manual ... [18s] OK * checking HTML version of manual ... [3s] OK * DONE Status: OK Check process probably crashed or hung up for 20 minutes ... killed Most likely this happened in the example checks (?), if not, ignore the following last lines of example output: > gamma_loglink_model <- glm(formula, data = df, family=Gamma(link="log")) Warning in dgamma(y, 1/disp, scale = mu * disp, log = TRUE) : NaNs produced > modelc::modelc(gamma_loglink_model) [1] "EXP( 0.437304392449495 + 0.25584278811045*a + (CASE WHEN c = '2' THEN 0.437304392449496 WHEN c = '3' THEN 0.586926712447211 WHEN c = '4' THEN 0.618765996788543 WHEN c = '5' THEN 0.586066759992303 WHEN c = '6' THEN 0.512545528675808 WHEN c = '7' THEN 0.410853420392617 WHEN c = '8' THEN 0.28854202490669 WHEN c = '9' THEN 0.150482272452623 WHEN c = '10' THEN 0 ELSE 0 END))" > > # A generalized linear model with gamma family distribution and identity link function > gamma_idlink_model <- glm(formula, data = df, family=Gamma(link="identity")) Warning in dgamma(y, 1/disp, scale = mu * disp, log = TRUE) : NaNs produced > modelc::modelc(gamma_idlink_model) [1] "-0.000000000000000713455532182612 + 2*a + (CASE WHEN c = '2' THEN 0.00000000000000177000194584079 WHEN c = '3' THEN -0.000000000000000184452414188223 WHEN c = '4' THEN -0.000000000000000158102069304192 WHEN c = '5' THEN -0.00000000000000124197474904532 WHEN c = '6' THEN -0.000000000000000105401379536127 WHEN c = '7' THEN -0.00000000000000163336326912732 WHEN c = '8' THEN -0.0000000000000000527006897680639 WHEN c = '9' THEN -0.00000000000000202475178920931 WHEN c = '10' THEN 0 ELSE 0 END)" > > > > ### *