R Under development (unstable) (2024-04-23 r86473 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(epigrowthfit) > options(warn = 2L, error = if (interactive()) recover) > > o.1 <- egf_cache("egf-1.rds") > > > ## print ############################################################### > > vv <- withVisible(print(o.1)) Top level nonlinear model .............................................. X(s, t) ~ dpois(lambda = f(t) - f(s)) where f(t) = c0 * exp(r * t) $ curve :"exponential" $ excess :FALSE $ family :"pois" $ day_of_week:0 Bottom level mixed effects model ....................................... log(r) ~ 1 | country:wave log(c0) ~ 1 | country:wave Data ................................................................... 300 observations 20 fitting windows 10 time series > stopifnot(exprs = { + identical(vv[["value"]], o.1) + identical(vv[["visible"]], FALSE) + }) > > proc.time() user system elapsed 1.35 0.14 1.48