Last updated on 2025-12-06 00:48:44 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.0 | 12.51 | 52.34 | 64.85 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 1.0 | 7.27 | 29.32 | 36.59 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.0 | 29.00 | 75.52 | 104.52 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.0 | 28.00 | 69.02 | 97.02 | OK | |
| r-devel-windows-x86_64 | 1.0 | 12.00 | 60.00 | 72.00 | OK | |
| r-patched-linux-x86_64 | 1.0 | 12.14 | 47.69 | 59.83 | OK | |
| r-release-linux-x86_64 | 1.0 | 11.30 | 50.36 | 61.66 | OK | |
| r-release-macos-arm64 | 1.0 | OK | ||||
| r-release-macos-x86_64 | 1.0 | 11.00 | 40.00 | 51.00 | OK | |
| r-release-windows-x86_64 | 1.0 | 12.00 | 62.00 | 74.00 | OK | |
| r-oldrel-macos-arm64 | 1.0 | OK | ||||
| r-oldrel-macos-x86_64 | 1.0 | 8.00 | 33.00 | 41.00 | OK | |
| r-oldrel-windows-x86_64 | 1.0 | 13.00 | 90.00 | 103.00 | OK |
Version: 1.0
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Hao Chen <hxchen@ucdavis.edu>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = "Hao",
family = "Chen",
role = c("aut", "cre"),
email = "hxchen@ucdavis.edu"),
person(given = c("Nancy", "R."),
family = "Zhang",
role = "aut"),
person(given = "Lynna",
family = "Chu",
role = "aut"),
person(given = "Hoseung",
family = "Song",
role = "aut"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.0
Check: examples
Result: ERROR
Running examples in ‘gSeg-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: gSeg
> ### Title: Graph-Based Change-Point Detection
> ### Aliases: gSeg
>
> ### ** Examples
>
>
> data(Example)
> # Five examples, each example is a n-length sequence.
> # Ei (i=1,...,5): an edge matrix representing a similarity graph constructed on the
> # observations in the ith sequence.
> # The following code shows how the Ei's were constructed.
>
> require(ade4)
Loading required package: ade4
Warning in library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘ade4’
> # For illustration, we use 'mstree' in this package to construct the similarity graph.
> # You can use other ways to construct the graph.
>
> ## Sequence 1: change in mean in the middle of the sequence.
> d = 50
> mu = 2
> tau = 100
> n = 200
> set.seed(500)
> y = rbind(matrix(rnorm(d*tau),tau), matrix(rnorm(d*(n-tau),mu/sqrt(d)), n-tau))
> y.dist = dist(y)
> E1 = mstree(y.dist)
Error in mstree(y.dist) : could not find function "mstree"
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc