Last updated on 2025-12-07 04:49:47 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.96-3 | 2.64 | 94.51 | 97.15 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.96-3 | 2.26 | 65.80 | 68.06 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.96-3 | 140.23 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.96-3 | 139.68 | OK | |||
| r-devel-windows-x86_64 | 0.96-3 | 4.00 | 108.00 | 112.00 | OK | |
| r-patched-linux-x86_64 | 0.96-3 | 2.71 | 82.71 | 85.42 | OK | |
| r-release-linux-x86_64 | 0.96-3 | 2.72 | 84.01 | 86.73 | OK | |
| r-release-macos-arm64 | 0.96-3 | OK | ||||
| r-release-macos-x86_64 | 0.96-3 | 2.00 | 113.00 | 115.00 | OK | |
| r-release-windows-x86_64 | 0.96-3 | 4.00 | 106.00 | 110.00 | OK | |
| r-oldrel-macos-arm64 | 0.96-3 | OK | ||||
| r-oldrel-macos-x86_64 | 0.96-3 | 3.00 | 154.00 | 157.00 | OK | |
| r-oldrel-windows-x86_64 | 0.96-3 | 4.00 | 137.00 | 141.00 | OK |
Version: 0.96-3
Check: examples
Result: ERROR
Running examples in ‘CLA-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: muSigmaGarch
> ### Title: Compute (mu, Sigma) for a Set of Assets via GARCH fit
> ### Aliases: muSigmaGarch
> ### Keywords: multivariate
>
> ### ** Examples
>
> if(requireNamespace("FRAPO")) {
+ data(NASDAQ, package = "FRAPO")
+ ## 12 randomly picked stocks from NASDAQ data
+ iS <- if(FALSE) { ## created (w/ warning, in new R) by
+ RNGversion("3.5.0"); set.seed(17); iS <- sample(ncol(NASDAQ), 12)
+ } else c(341L, 2126L, 1028L, 1704L, 895L, 1181L, 454L, 410L, 1707L, 425L, 950L, 5L)
+ X. <- NASDAQ[, iS]
+ muSig <- muSigmaGarch(X.)
+ stopifnot(identical(names(muSig$mu), names(NASDAQ)[iS]),
+ identical(dim(muSig$covar), c(12L,12L)),
+ all.equal(unname(muSig$mu),
+ c( 7.97, -4.05, -14, 21.5, -5.36, -15.3,
+ -15.9, 11.8, -1.64, -14, 3.13, 121) / 10000,
+ tol = 0.0015))
+ }
Loading required namespace: FRAPO
Loading required namespace: fGarch
Failed with error: ‘there is no package called ‘fGarch’’
Error in muSigmaGarch(X.) :
muSigmaGarch() needs the 'fGarch' package installed
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc