Last updated on 2026-06-18 01:52:56 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.0.1 | 2.74 | 39.37 | 42.11 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.0.1 | 1.99 | 29.19 | 31.18 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.0.1 | 60.36 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 1.0.1 | 60.29 | OK | |||
| r-devel-windows-x86_64 | 1.0.1 | 5.00 | 0.00 | 5.00 | FAIL | |
| r-patched-linux-x86_64 | 1.0.1 | 2.60 | 37.45 | 40.05 | OK | |
| r-release-linux-x86_64 | 1.0.1 | 2.44 | 36.68 | 39.12 | OK | |
| r-release-macos-arm64 | 1.0.1 | 1.00 | 13.00 | 14.00 | OK | |
| r-release-macos-x86_64 | 1.0.1 | 2.00 | 47.00 | 49.00 | OK | |
| r-release-windows-x86_64 | 1.0.1 | 4.00 | 7045.00 | 7049.00 | OK | |
| r-oldrel-macos-arm64 | 1.0.1 | OK | ||||
| r-oldrel-macos-x86_64 | 1.0.1 | 2.00 | 41.00 | 43.00 | OK | |
| r-oldrel-windows-x86_64 | 1.0.1 | 6.00 | 258.00 | 264.00 | OK |
Version: 1.0.1
Check: examples
Result: FAIL
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:
> path_to_data <- system.file("extdata/NY_OCT_4_2022.csv", package = "REffectivePred")
> data <- read.csv(path_to_data)
> head(data)
date state cases deaths
1 01-03-2020 New York 1 0
2 02-03-2020 New York 1 0
3 03-03-2020 New York 2 0
4 04-03-2020 New York 11 0
5 05-03-2020 New York 22 0
6 06-03-2020 New York 44 0
> cases <- diff(c(0, data$cases)) # Convert cumulative cases into daily cases
> lt <- length(cases) # Length of cases
> Time <- as.Date(data$date, tryFormats = c("%d-%m-%Y", "%d/%m/%Y"))
>
> navigate_to_config() # Open the config file, make any necessary changes here.
[1] "D:/RCompile/CRANpkg/lib/4.7/REffectivePred/config.yml"
> path_to_config <- system.file("config.yml", package = "REffectivePred") # Read config file
> cfg <- load_config() # Build the cfg object
>
> # Estimate parameters
> est <- estimate.mle(
+ cases = cases,
+ cfg = cfg,
+ hessian = TRUE
+ )
initial value 5351.895523
iter 10 value 360.363177
iter 20 value 338.843404
final value 338.839744
converged
======== End of example output (where/before crash/hang up occured ?) ========
Flavor: r-devel-windows-x86_64