* using log directory 'd:/Rcompile/CRANpkg/local/4.3/trendeval.Rcheck' * using R version 4.3.3 (2024-02-29 ucrt) * using platform: x86_64-w64-mingw32 (64-bit) * R was compiled by gcc.exe (GCC) 12.3.0 GNU Fortran (GCC) 12.3.0 * running under: Windows Server 2022 x64 (build 20348) * using session charset: UTF-8 * checking for file 'trendeval/DESCRIPTION' ... OK * this is package 'trendeval' version '0.1.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 'trendeval' 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 R files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... [4s] OK * checking whether the package can be loaded with stated dependencies ... [3s] OK * checking whether the package can be unloaded cleanly ... [3s] OK * checking whether the namespace can be loaded with stated dependencies ... [3s] OK * checking whether the namespace can be unloaded cleanly ... [4s] OK * checking loading without being on the library search path ... [4s] 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 ... [9s] OK * checking Rd files ... [1s] 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 examples ... [5s] ERROR Running examples in 'trendeval-Ex.R' failed The error most likely occurred in: > ### Name: evaluate_resampling > ### Title: Resampling approach for model evaluation > ### Aliases: evaluate_resampling evaluate_resampling.default > ### evaluate_resampling.trending_model evaluate_resampling.list > > ### ** Examples > > x <- rnorm(100, mean = 0) > y <- rpois(n = 100, lambda = exp(x + 1)) > dat <- data.frame(x = x, y = y) > model <- trending::glm_model(y ~ x, poisson) > models <- list( + poisson_model = trending::glm_model(y ~ x, poisson), + linear_model = trending::lm_model(y ~ x) + ) > > evaluate_resampling(model, dat) Error in `rsample::vfold_cv()`: ! Leave-one-out cross-validation is not supported by this function. ✖ You set `v` to `nrow(data)`, which would result in a leave-one-out cross-validation. ℹ Use `loo_cv()` in this case. Backtrace: ▆ 1. ├─trendeval::evaluate_resampling(model, dat) 2. └─trendeval:::evaluate_resampling.trending_model(model, dat) 3. └─rsample::vfold_cv(data, v = v, repeats = repeats) 4. └─rsample:::vfold_splits(...) 5. └─rsample:::check_v(v, n, prevent_loo = prevent_loo, call = rlang::caller_env()) 6. └─cli::cli_abort(...) 7. └─rlang::abort(...) Execution halted * checking for unstated dependencies in 'tests' ... OK * checking tests ... [6s] OK Running 'testthat.R' [6s] * checking PDF version of manual ... [17s] OK * checking HTML version of manual ... [2s] OK * DONE Status: 1 ERROR