Last updated on 2025-12-06 18:49:53 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.1.0 | 105.55 | 335.08 | 440.63 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 1.1.0 | 65.24 | 84.94 | 150.18 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.1.0 | 302.00 | 465.81 | 767.81 | NOTE | |
| r-devel-linux-x86_64-fedora-gcc | 1.1.0 | 214.00 | 492.18 | 706.18 | NOTE | |
| r-devel-windows-x86_64 | 1.1.0 | 121.00 | 332.00 | 453.00 | NOTE | |
| r-patched-linux-x86_64 | 1.1.0 | 105.80 | 315.18 | 420.98 | NOTE | |
| r-release-linux-x86_64 | 1.1.0 | 103.22 | 315.79 | 419.01 | NOTE | |
| r-release-macos-arm64 | 1.1.0 | NOTE | ||||
| r-release-macos-x86_64 | 1.1.0 | 38.00 | 340.00 | 378.00 | NOTE | |
| r-release-windows-x86_64 | 1.1.0 | 119.00 | 333.00 | 452.00 | NOTE | |
| r-oldrel-macos-arm64 | 1.1.0 | NOTE | ||||
| r-oldrel-macos-x86_64 | 1.1.0 | 33.00 | 247.00 | 280.00 | NOTE | |
| r-oldrel-windows-x86_64 | 1.1.0 | 146.00 | 464.00 | 610.00 | NOTE |
Version: 1.1.0
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Haotian Xu <haotian.xu@uclouvain.be>’
The Description field contains
<arXiv:2006.03283>; 2) univariate polynomials:
<doi:10.1214/20-AOS1953>, <arXiv:2101.05477>, <arXiv:2110.06450>; 6)
high-dimensional linear regression models: <arXiv:2010.10410>,
<arXiv:2207.12453>; 7) high-dimensional vector autoregressive models:
<arXiv:1909.06359>; 8) high-dimensional self exciting point processes:
<arXiv:2006.03572>; 9) dependent dynamic nonparametric random dot
product graphs: <arXiv:1911.07494>; 10) univariate mean against
adversarial attacks: <arXiv:2105.10417>.
Please refer to arXiv e-prints via their arXiv DOI <doi:10.48550/arXiv.YYMM.NNNNN>.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.1.0
Check: Rd files
Result: NOTE
checkRd: (-1) Hausdorff.dist.Rd:10: Lost braces; missing escapes or markup?
10 | \item{vec1}{A \code{integer} vector forms a subset of {1, 2, ..., n}.}
| ^
checkRd: (-1) Hausdorff.dist.Rd:12: Lost braces; missing escapes or markup?
12 | \item{vec2}{A \code{integer} vector forms a subset of {1, 2, ..., n}.}
| ^
checkRd: (-1) online.univar.multi.Rd:47-57: Lost braces
47 | online.univar.one2 = function(y_vec, gamma, tau_gamma, ...){
| ^
checkRd: (-1) online.univar.multi.Rd:50-55: Lost braces
50 | while(FLAG == 0 & t <= length(y_vec)){
| ^
checkRd: (-1) online.univar.multi.Rd:71-89: Lost braces
71 | online.univar.one3 = function(y_vec, tau_vec, ...){
| ^
checkRd: (-1) online.univar.multi.Rd:72-74: Lost braces
72 | if(length(y_vec) != length(tau_vec)){
| ^
checkRd: (-1) online.univar.multi.Rd:77-87: Lost braces
77 | while(FLAG == 0 & t <= length(y_vec)){
| ^
checkRd: (-1) online.univar.multi.Rd:81-86: Lost braces
81 | while(j < J & FLAG == 0){
| ^
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, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
Version: 1.1.0
Check: package dependencies
Result: WARN
Cannot process vignettes
Packages suggested but not available for checking:
'knitr', 'DiagrammeR', 'rmarkdown'
VignetteBuilder package required for checking but not installed: ‘knitr’
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.1.0
Check: examples
Result: ERROR
Running examples in ‘changepoints-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: WBS.univar
> ### Title: Wild binary segmentation for univariate mean change points
> ### detection.
> ### Aliases: WBS.univar
>
> ### ** Examples
>
> set.seed(0)
> cpt_true = c(20, 50, 170)
> y = rnorm(300) + c(rep(0,20),rep(2,30),rep(0,120),rep(2,130))
> intervals = WBS.intervals(M = 300, lower = 1, upper = length(y))
> temp = WBS.univar(y, 1, length(y), intervals$Alpha, intervals$Beta, delta = 5)
> plot.ts(y)
> points(x = tail(temp$S[order(temp$Dval)],4),
+ y = y[tail(temp$S[order(temp$Dval)],4)], col = "red")
> WBS_result = thresholdBS(temp, tau = 4)
> print(WBS_result$BS_tree, "value")
levelName value
1 Binary Segmentation Tree Trimmed with tau = 4 NA
2 °--N170 15.667978
3 °--N50 9.957747
4 °--N20 7.301167
> plot(WBS_result$BS_tree)
Error in plot.Node(WBS_result$BS_tree) :
Package "DiagrammeR" is required to plot a `data.tree::Node`object. Please install it.
Calls: plot -> plot.Node
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.1.0
Check: package vignettes
Result: NOTE
Package has ‘vignettes’ subdirectory but apparently no vignettes.
Perhaps the ‘VignetteBuilder’ information is missing from the
DESCRIPTION file?
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.1.0
Check: installed package size
Result: NOTE
installed size is 6.1Mb
sub-directories of 1Mb or more:
libs 5.5Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64