CRAN Package Check Results for Package dyn

Last updated on 2026-09-04 21:50:44 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.2-9.6 2.39 27.40 29.79 ERROR
r-devel-linux-x86_64-debian-gcc 0.2-9.6 1.87 22.44 24.31 ERROR
r-devel-linux-x86_64-fedora-clang 0.2-9.6 22.02 NOTE
r-devel-linux-x86_64-fedora-gcc 0.2-9.6 20.09 NOTE
r-devel-windows-x86_64 0.2-9.6 4.00 50.00 54.00 NOTE
r-patched-linux-x86_64 0.2-9.6 1.86 25.33 27.19 OK
r-release-linux-x86_64 0.2-9.6 1.93 24.84 26.77 OK
r-release-macos-arm64 0.2-9.6 1.00 11.00 12.00 OK
r-release-macos-x86_64 0.2-9.6 2.00 36.00 38.00 OK
r-release-windows-x86_64 0.2-9.6 3.00 45.00 48.00 OK
r-oldrel-macos-arm64 0.2-9.6 OK
r-oldrel-macos-x86_64 0.2-9.6 2.00 27.00 29.00 OK
r-oldrel-windows-x86_64 0.2-9.6 5.00 52.00 57.00 OK

Check Details

Version: 0.2-9.6
Check: CRAN incoming feasibility
Result: NOTE Maintainer: ‘M. Leeds <markleeds2@gmail.com>’ No Authors@R field in DESCRIPTION. Please add one, modifying Authors@R: c(person(given = "G.", family = "Grothendieck", role = "aut"), person(given = "M.", family = "Leeds", role = "cre", email = "markleeds2@gmail.com")) as necessary. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Version: 0.2-9.6
Check: R code for possible problems
Result: NOTE Found calls to structure() using deprecated special names: dyn/demo/dyn-na.R (.Dim: 1, .Dimnames: 1) dyn/tests/vcovHAC.R (.Dim: 1, .Dimnames: 1) '.Dim' should be changed to 'dim'. '.Dimnames' should be changed to 'dimnames'. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64

Version: 0.2-9.6
Check: examples
Result: ERROR Running examples in ‘dyn-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: dyn > ### Title: dynamic regression class > ### Aliases: dyn $.dyn model.frame.dyn model.frame.irts model.frame.its > ### model.frame.ts model.frame.zoo model.frame.zooreg model.matrix.dyn > ### predict.dyn predict.ts predict.zoo fitted.dyn fitted.ts fitted.zoo > ### residuals.dyn residuals.ts residuals.zoo update.dyn anova.dyn > ### fitted.irts fitted.its fitted.zooreg predict.irts predict.its > ### predict.zooreg residuals.irts residuals.its residuals.zooreg > ### Keywords: regression > > ### ** Examples > > y <- ts(1:12, start = c(2000,2), freq = 4)^3 > x <- ts(1:9, start = c(2000,3), freq = 4)^2 > > # can be used with numerous different regression functions > y.lm <- dyn$lm( window(y, start = c(2000,4)) ~ diff(x) ) > y.lm <- dyn$lm( y ~ diff(x) ) > y.glm <- dyn$glm( y ~ diff(x) ) > y.loess <- dyn$loess( y ~ diff(x) ) > > y.lm <- dyn(lm(dyn(y ~ diff(x)))) # same > y.lm Call: lm(formula = y ~ diff(x), data = dyn(y ~ diff(x))) Coefficients: (Intercept) diff(x) -303 68 > summary(y.lm) Call: lm(formula = y ~ diff(x), data = dyn(y ~ diff(x))) Residuals: Min 1Q Median 3Q Max -102.00 -75.00 -18.00 51.75 147.00 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) -303.000 87.975 -3.444 0.013731 * diff(x) 68.000 7.998 8.502 0.000145 *** --- Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 Residual standard error: 103.7 on 6 degrees of freedom (4 observations deleted due to missingness) Multiple R-squared: 0.9234, Adjusted R-squared: 0.9106 F-statistic: 72.29 on 1 and 6 DF, p-value: 0.0001449 > residuals(y.lm) Qtr1 Qtr2 Qtr3 Qtr4 2000 126 2001 27 -48 -93 -102 2002 -69 12 147 > fitted(y.lm) Qtr1 Qtr2 Qtr3 Qtr4 2000 -99 2001 37 173 309 445 2002 581 717 853 > y2.lm <- update(y.lm, . ~ . + lag(x,-1)) Error in as.data.frame.default(data) : cannot coerce class ‘c("dyn", "formula")’ to a data.frame Calls: update ... model.frame.default -> as.data.frame -> as.data.frame.default Execution halted Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc