Last updated on 2025-06-15 03:49:34 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 2024.2-1 | 5.05 | 56.61 | 61.66 | NOTE | |
r-devel-linux-x86_64-debian-gcc | 2024.2-1 | 3.75 | 41.44 | 45.19 | ERROR | |
r-devel-linux-x86_64-fedora-clang | 2024.2-1 | 108.13 | ERROR | |||
r-devel-linux-x86_64-fedora-gcc | 2024.2-1 | 114.71 | ERROR | |||
r-devel-windows-x86_64 | 2024.2-1 | 5.00 | 130.00 | 135.00 | OK | |
r-patched-linux-x86_64 | 2024.2-1 | 5.46 | 54.29 | 59.75 | OK | |
r-release-linux-x86_64 | 2024.2-1 | 4.91 | 53.20 | 58.11 | ERROR | |
r-release-macos-arm64 | 2024.2-1 | 52.00 | OK | |||
r-release-macos-x86_64 | 2024.2-1 | 78.00 | OK | |||
r-release-windows-x86_64 | 2024.2-1 | 7.00 | 79.00 | 86.00 | OK | |
r-oldrel-macos-arm64 | 2024.2-1 | 36.00 | OK | |||
r-oldrel-macos-x86_64 | 2024.2-1 | 58.00 | OK | |||
r-oldrel-windows-x86_64 | 2024.2-1 | 8.00 | 96.00 | 104.00 | OK |
Version: 2024.2-1
Check: CRAN incoming feasibility
Result: 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.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 2024.2-1
Check: examples
Result: 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
Flavors: r-devel-linux-x86_64-debian-gcc, r-release-linux-x86_64
Version: 2024.2-1
Check: tests
Result: ERROR
Running ‘TSwriteXLS.R’ [1s/2s]
Running ‘perl.R’ [0s/0s]
Running ‘timeSeries.R’ [1s/1s]
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
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 2024.2-1
Check: examples
Result: ERROR
Running examples in ‘tframePlus-Ex.R’ failed
The error most likely occurred in:
> ### 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
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 2024.2-1
Check: tests
Result: ERROR
Running ‘TSwriteXLS.R’
Running ‘perl.R’
Running ‘timeSeries.R’
Running ‘tis.R’
Running ‘xts.R’
Running ‘zoo.R’
Running ‘zoo2.R’
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.14.6-300.fc42.x86_64"
version
"#1 SMP PREEMPT_DYNAMIC Fri May 9 20:11:19 UTC 2025"
nodename
"gannet.stats.ox.ac.uk"
machine
"x86_64"
login
"ripley"
user
"ripley"
effective_user
"ripley"
>
> #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.14.6-300.fc42.x86_64"
version
"#1 SMP PREEMPT_DYNAMIC Fri May 9 20:11:19 UTC 2025"
nodename
"gannet.stats.ox.ac.uk"
machine
"x86_64"
login
"ripley"
user
"ripley"
effective_user
"ripley"
>
> #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.14.6-300.fc42.x86_64"
version
"#1 SMP PREEMPT_DYNAMIC Fri May 9 20:11:19 UTC 2025"
nodename
"gannet.stats.ox.ac.uk"
machine
"x86_64"
login
"ripley"
user
"ripley"
effective_user
"ripley"
>
> #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.14.6-300.fc42.x86_64"
version
"#1 SMP PREEMPT_DYNAMIC Fri May 9 20:11:19 UTC 2025"
nodename
"gannet.stats.ox.ac.uk"
machine
"x86_64"
login
"ripley"
user
"ripley"
effective_user
"ripley"
>
> #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
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 2024.2-1
Check: tests
Result: ERROR
Running ‘TSwriteXLS.R’ [2s/2s]
Running ‘perl.R’ [0s/0s]
Running ‘timeSeries.R’ [1s/2s]
Running ‘tis.R’ [1s/1s]
Running ‘xts.R’ [1s/2s]
Running ‘zoo.R’ [1s/2s]
Running ‘zoo2.R’ [1s/2s]
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
"gimli2"
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
"gimli2"
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
"gimli2"
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
"gimli2"
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
Flavor: r-release-linux-x86_64