- using R Under development (unstable) (2025-06-27 r88363)
- using platform: x86_64-pc-linux-gnu
- R was compiled by
gcc-14 (Debian 14.2.0-19) 14.2.0
GNU Fortran (Debian 14.2.0-19) 14.2.0
- running under: Debian GNU/Linux 13 (trixie)
- using session charset: UTF-8
- checking for file ‘tframePlus/DESCRIPTION’ ... OK
- this is package ‘tframePlus’ version ‘2024.2-1’
- checking CRAN incoming feasibility ... [0s/1s] NOTE
Maintainer: ‘Paul Gilbert <pgilbert.ttv9z@ncf.ca>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: person(given = "Paul",
family = "Gilbert",
role = c("aut", "cre"),
email = "pgilbert.ttv9z@ncf.ca")
as necessary.
- checking package namespace information ... OK
- checking package dependencies ... INFO
Package suggested but not available for checking: ‘tfplot’
- checking if this is a source package ... OK
- checking if there is a namespace ... OK
- checking for executable files ... OK
- checking for hidden files and directories ... OK
- checking for portable file names ... OK
- checking for sufficient/correct file permissions ... OK
- checking serialization versions ... OK
- checking whether package ‘tframePlus’ can be installed ... OK
See the install log for details.
- checking package directory ... OK
- checking for future file timestamps ... OK
- checking ‘build’ directory ... OK
- checking DESCRIPTION meta-information ... OK
- checking top-level files ... OK
- checking for left-over files ... OK
- checking index information ... OK
- checking package subdirectories ... OK
- checking code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [1s/1s] OK
- checking whether the package can be loaded with stated dependencies ... [1s/2s] OK
- checking whether the package can be unloaded cleanly ... [1s/1s] OK
- checking whether the namespace can be loaded with stated dependencies ... [1s/1s] OK
- checking whether the namespace can be unloaded cleanly ... [1s/1s] OK
- checking loading without being on the library search path ... [1s/1s] OK
- checking use of S3 registration ... OK
- checking dependencies in R code ... OK
- checking S3 generic/method consistency ... OK
- checking replacement functions ... OK
- checking foreign function calls ... OK
- checking R code for possible problems ... [6s/9s] OK
- checking Rd files ... [0s/1s] OK
- checking Rd metadata ... OK
- checking Rd line widths ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking sizes of PDF files under ‘inst/doc’ ... OK
- checking installed files from ‘inst/doc’ ... OK
- checking files in ‘vignettes’ ... OK
- checking examples ... [2s/3s] ERROR
Running examples in ‘tframePlus-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: rollAggregate
> ### Title: Rolling Time Series Aggregate
> ### Aliases: rollAggregate
> ### Keywords: utilities ts
>
> ### ** Examples
>
> rollAggregate(ts(1:20, start = c(1999,1), frequency=1))
Time Series:
Start = 1999
End = 2018
Frequency = 1
Series 1
[1,] NA
[2,] NA
[3,] NA
[4,] 10
[5,] 14
[6,] 18
[7,] 22
[8,] 26
[9,] 30
[10,] 34
[11,] 38
[12,] 42
[13,] 46
[14,] 50
[15,] 54
[16,] 58
[17,] 62
[18,] 66
[19,] 70
[20,] 74
> rollAggregate(ts(1:20, start = c(1999,1), frequency=12), aggPeriods=3)
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
1999 NA NA 6 9 12 15 18 21 24 27 30 33
2000 36 39 42 45 48 51 54 57
>
> if(require("zoo")) {
+ z <- zoo(rnorm(100), order.by = Sys.Date() + 1:100)
+ rollAggregate(as.weekly(z), aggPeriods=4, FUN=mean)
+ require("tfplot")
+ tfplot(as.weekly(z),rollAggregate(as.weekly(z), aggPeriods=4,
+ FUN=mean, na.rm=TRUE))
+ tfplot(z,rollAggregate(z, aggPeriods=28, FUN=mean))
+ }
Loading required package: zoo
Attaching package: ‘zoo’
The following objects are masked from ‘package:base’:
as.Date, as.Date.numeric
Loading required package: tfplot
Warning in library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘tfplot’
Error in tfplot(as.weekly(z), rollAggregate(as.weekly(z), aggPeriods = 4, :
could not find function "tfplot"
Execution halted
- checking for unstated dependencies in ‘tests’ ... OK
- checking tests ... [7s/10s] ERROR
Running ‘TSwriteXLS.R’ [1s/2s]
Running ‘perl.R’ [0s/1s]
Running ‘timeSeries.R’ [1s/2s]
Running ‘tis.R’ [1s/1s]
Running ‘xts.R’ [1s/1s]
Running ‘zoo.R’ [1s/1s]
Running ‘zoo2.R’ [1s/1s]
Running the tests in ‘tests/timeSeries.R’ failed.
Complete output:
> require("tframePlus")
Loading required package: tframePlus
Loading required package: tframe
> require("tfplot")
Loading required package: tfplot
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called 'tfplot'
> if(!require("timeSeries")) stop("timeSeries not available, tests failed.")
Loading required package: timeSeries
Loading required package: timeDate
Attaching package: 'timeSeries'
The following objects are masked from 'package:graphics':
lines, points
>
>
> Sys.info()
sysname
"Linux"
release
"6.12.22-amd64"
version
"#1 SMP PREEMPT_DYNAMIC Debian 6.12.22-1 (2025-04-10)"
nodename
"gimli1"
machine
"x86_64"
login
"hornik"
user
"hornik"
effective_user
"hornik"
>
> #x11()
> # postscript(file="lite.out.ps", paper="letter", horizontal=F, onefile=T)
> # # width=6, height=8, pointsize=10,
>
>
> all.ok <- TRUE
> cat("tframe timeSeries test 1 ... ")
tframe timeSeries test 1 ... > z <- timeSeries(rnorm(100),
+ as.POSIXct(Sys.time() + sort(round(runif(100)*1e8)), "GMT"))
> seriesNames(z) <- "random example"
> ok <- all(seriesNames(z) == c("random example"))
> all.ok <- all.ok & ok
> if (ok) cat("ok\n") else cat("unvariate seriesNames failed!\n")
ok
> ok <- is.tframed(z) & (inherits(z, "timeSeries"))
> all.ok <- ok
> if (ok) cat("ok\n") else cat("failed!\n")
ok
>
>
> cat("tframe timeSeries test 2 ... ")
tframe timeSeries test 2 ... > plot(z)
> tfplot(z)
Error in tfplot(z) : could not find function "tfplot"
Execution halted
Running the tests in ‘tests/tis.R’ failed.
Complete output:
> require("tframePlus")
Loading required package: tframePlus
Loading required package: tframe
> require("tfplot")
Loading required package: tfplot
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called 'tfplot'
> if(!require("tis")) stop("tis not available, tests failed.")
Loading required package: tis
> if(!require("zoo")) stop("zoo not available, tests failed.")
Loading required package: zoo
Attaching package: 'zoo'
The following objects are masked from 'package:base':
as.Date, as.Date.numeric
>
>
> Sys.info()
sysname
"Linux"
release
"6.12.22-amd64"
version
"#1 SMP PREEMPT_DYNAMIC Debian 6.12.22-1 (2025-04-10)"
nodename
"gimli1"
machine
"x86_64"
login
"hornik"
user
"hornik"
effective_user
"hornik"
>
> #x11()
> # postscript(file="lite.out.ps", paper="letter", horizontal=F, onefile=T)
> # # width=6, height=8, pointsize=10,
>
>
> all.ok <- TRUE
> cat("tframe tis test 1 ... ")
tframe tis test 1 ... > z <- tis(rnorm(100), start="2007-01-01", frequency=52)
> seriesNames(z) <- "random example"
> ok <- all(seriesNames(z) == c("random example"))
> all.ok <- all.ok & ok
> if (ok) cat("ok\n") else cat("unvariate seriesNames failed!\n")
ok
> ok <- is.tframed(z) & (inherits(z, "tis"))
> all.ok <- ok
> if (ok) cat("ok\n") else cat("failed!\n")
ok
>
>
> cat("tframe tis test 2 ... ")
tframe tis test 2 ... > plot(z)
> tfplot(z)
Error in tfplot(z) : could not find function "tfplot"
Execution halted
Running the tests in ‘tests/xts.R’ failed.
Complete output:
> require("tframePlus")
Loading required package: tframePlus
Loading required package: tframe
> require("tfplot")
Loading required package: tfplot
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called 'tfplot'
> if(!require("xts")) stop("xts not available, tests failed.")
Loading required package: xts
Loading required package: zoo
Attaching package: 'zoo'
The following objects are masked from 'package:base':
as.Date, as.Date.numeric
>
>
> Sys.info()
sysname
"Linux"
release
"6.12.22-amd64"
version
"#1 SMP PREEMPT_DYNAMIC Debian 6.12.22-1 (2025-04-10)"
nodename
"gimli1"
machine
"x86_64"
login
"hornik"
user
"hornik"
effective_user
"hornik"
>
> #x11()
> # postscript(file="lite.out.ps", paper="letter", horizontal=F, onefile=T)
> # # width=6, height=8, pointsize=10,
>
>
> all.ok <- TRUE
> cat("tframe xts test 1 ... ")
tframe xts test 1 ... > z <- xts(rnorm(100),
+ as.POSIXct(Sys.time() + sort(round(runif(100)*1e8)), "GMT"))
> seriesNames(z) <- "random example"
> ok <- all(seriesNames(z) == c("random example"))
> all.ok <- all.ok & ok
> if (ok) cat("ok\n") else cat("unvariate seriesNames failed!\n")
ok
> ok <- is.tframed(z) & (inherits(z, "xts"))
> all.ok <- ok
> if (ok) cat("ok\n") else cat("failed!\n")
ok
>
>
> cat("tframe xts test 2 ... ")
tframe xts test 2 ... > plot(z)
> tfplot(z)
Error in tfplot(z) : could not find function "tfplot"
Execution halted
Running the tests in ‘tests/zoo.R’ failed.
Complete output:
> require("tframePlus")
Loading required package: tframePlus
Loading required package: tframe
> require("tfplot")
Loading required package: tfplot
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called 'tfplot'
> if(!require("zoo")) stop("zoo not available, tests failed.")
Loading required package: zoo
Attaching package: 'zoo'
The following objects are masked from 'package:base':
as.Date, as.Date.numeric
>
>
> Sys.info()
sysname
"Linux"
release
"6.12.22-amd64"
version
"#1 SMP PREEMPT_DYNAMIC Debian 6.12.22-1 (2025-04-10)"
nodename
"gimli1"
machine
"x86_64"
login
"hornik"
user
"hornik"
effective_user
"hornik"
>
> #x11()
> # postscript(file="lite.out.ps", paper="letter", horizontal=F, onefile=T)
> # # width=6, height=8, pointsize=10,
>
>
> all.ok <- TRUE
> cat("tframe zoo test 1 ... ")
tframe zoo test 1 ... > z <- zoo(rnorm(100),
+ as.POSIXct(Sys.time() + sort(round(runif(100)*1e8)), "GMT"))
> seriesNames(z) <- "random example"
> ok <- all(seriesNames(z) == c("random example"))
> all.ok <- all.ok & ok
> if (ok) cat("ok\n") else cat("unvariate seriesNames failed!\n")
ok
> ok <- is.tframed(z) & (inherits(z, "zoo"))
> all.ok <- ok
> if (ok) cat("ok\n") else cat("failed!\n")
ok
>
>
> cat("tframe zoo test 2 ... ")
tframe zoo test 2 ... > plot(z)
> tfplot(z)
Error in tfplot(z) : could not find function "tfplot"
Execution halted
- checking for unstated dependencies in vignettes ... OK
- checking package vignettes ... OK
- checking re-building of vignette outputs ... [3s/4s] OK
- checking PDF version of manual ... [4s/6s] OK
- checking HTML version of manual ... [0s/1s] OK
- checking for non-standard things in the check directory ... OK
- DONE
Status: 2 ERRORs, 1 NOTE