R Under development (unstable) (2024-09-20 r87184 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > #### doRUnit.R --- Run RUnit tests > ####------------------------------------------------------------------------ > > ### Origianlly follows Gregor Gojanc's example in CRAN package 'gdata' > ### and the corresponding section in the R Wiki: > ### http://wiki.r-project.org/rwiki/doku.php?id=developers:runit > > ### MM: Vastly changed: This should also be "runnable" for *installed* > ## package which has no ./tests/ > ## ----> put the bulk of the code e.g. in ../inst/unitTests/runTests.R : > > if(require("RUnit", quietly = TRUE)) { + + ## --- Setup --- + + wd <- getwd() + pkg <- sub("\\.Rcheck$", '', basename(dirname(wd))) + + library(package = pkg, character.only=TRUE) + + path <- system.file("unitTests", package = pkg) + + stopifnot(file.exists(path), file.info(path.expand(path))$isdir) + + source(file.path(path, "runTests.R"), echo = TRUE) + } Loading required package: timeDate Attaching package: 'timeSeries' The following objects are masked from 'package:graphics': lines, points > pkg <- "timeSeries" > if (require("RUnit", quietly = TRUE)) { + library(package = pkg, character.only = TRUE) + if (!(exists("path") && file.exists(path))) + .... [TRUNCATED] Executing test function test.interpNA ... 1 2 3 4 5 1 0.609 NA NA 0.838 -0.081 2 -0.732 -0.445 -0.656 NA -0.214 3 0.646 NA 0.488 -0.071 -0.968 4 -0.196 NA 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 NA 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 NA -1.236 3.120 -1.855 15 NA 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 NA -0.911 -0.023 0.785 1 2 3 4 5 1 0.609 NA NA 0.8380 -0.081 2 -0.732 -0.4450 -0.656 0.3835 -0.214 3 0.646 -0.6340 0.488 -0.0710 -0.968 4 -0.196 -0.8230 0.783 -0.1520 -1.387 5 -0.670 -1.0120 -0.347 0.1930 1.003 6 -1.874 -1.0560 -0.049 -0.9730 0.374 7 -0.234 0.3400 -0.466 0.9320 -0.314 8 2.093 2.3250 1.339 0.6180 -0.706 9 2.601 0.1380 1.287 1.3650 0.625 10 -1.307 -0.0320 1.471 -0.0760 -0.099 11 1.146 0.2110 0.460 1.3620 0.491 12 -0.878 0.1490 0.567 0.1690 1.081 13 -1.413 0.7910 1.556 -0.9380 -0.357 14 -0.428 0.6305 -1.236 3.1200 -1.855 15 0.254 0.4700 1.069 -0.7590 0.210 16 0.936 -0.7100 0.966 -0.6290 -0.649 17 1.473 -0.6600 -0.115 -1.0060 0.627 18 -0.052 -0.1100 0.809 0.2080 -1.809 19 0.172 -0.0630 0.713 0.2110 -1.000 20 0.164 NA -0.911 -0.0230 0.785 1 2 3 4 5 1 0.609 NA NA 0.838 -0.081 2 -0.732 -0.445 -0.656 0.838 -0.214 3 0.646 -0.445 0.488 -0.071 -0.968 4 -0.196 -0.445 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 -0.099 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 0.791 -1.236 3.120 -1.855 15 -0.428 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 NA -0.911 -0.023 0.785 1 2 3 4 5 1 0.609 NA NA 0.838 -0.081 2 -0.732 -0.445 -0.656 -0.071 -0.214 3 0.646 -1.012 0.488 -0.071 -0.968 4 -0.196 -1.012 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 1.081 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 0.470 -1.236 3.120 -1.855 15 0.936 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 NA -0.911 -0.023 0.785 done successfully. Executing test function test.removeNA ... 1 2 3 4 5 1 0.609 NA NA 0.838 -0.081 2 -0.732 -0.445 -0.656 NA -0.214 3 0.646 NA 0.488 -0.071 -0.968 4 -0.196 NA 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 NA 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 NA -1.236 3.120 -1.855 15 NA 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 NA -0.911 -0.023 0.785 1 2 3 4 5 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 attr(,"na.action") 15 1 3 4 14 20 2 11 15 1 3 4 14 20 2 11 attr(,"class") [1] "omit" 1 2 3 4 5 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 GMT 1 2 3 4 5 2024-01-01 0.609 NA NA 0.838 -0.081 2024-01-02 -0.732 -0.445 -0.656 NA -0.214 2024-01-03 0.646 NA 0.488 -0.071 -0.968 2024-01-04 -0.196 NA 0.783 -0.152 -1.387 2024-01-05 -0.670 -1.012 -0.347 0.193 1.003 2024-01-06 -1.874 -1.056 -0.049 -0.973 0.374 2024-01-07 -0.234 0.340 -0.466 0.932 -0.314 2024-01-08 2.093 2.325 1.339 0.618 -0.706 2024-01-09 2.601 0.138 1.287 1.365 0.625 2024-01-10 -1.307 -0.032 1.471 -0.076 -0.099 2024-01-11 1.146 0.211 0.460 1.362 NA 2024-01-12 -0.878 0.149 0.567 0.169 1.081 2024-01-13 -1.413 0.791 1.556 -0.938 -0.357 2024-01-14 -0.428 NA -1.236 3.120 -1.855 2024-01-15 NA 0.470 1.069 -0.759 0.210 2024-01-16 0.936 -0.710 0.966 -0.629 -0.649 2024-01-17 1.473 -0.660 -0.115 -1.006 0.627 2024-01-18 -0.052 -0.110 0.809 0.208 -1.809 2024-01-19 0.172 -0.063 0.713 0.211 -1.000 2024-01-20 0.164 NA -0.911 -0.023 0.785 GMT 1 2 3 4 5 2024-01-05 -0.670 -1.012 -0.347 0.193 1.003 2024-01-06 -1.874 -1.056 -0.049 -0.973 0.374 2024-01-07 -0.234 0.340 -0.466 0.932 -0.314 2024-01-08 2.093 2.325 1.339 0.618 -0.706 2024-01-09 2.601 0.138 1.287 1.365 0.625 2024-01-10 -1.307 -0.032 1.471 -0.076 -0.099 2024-01-12 -0.878 0.149 0.567 0.169 1.081 2024-01-13 -1.413 0.791 1.556 -0.938 -0.357 2024-01-16 0.936 -0.710 0.966 -0.629 -0.649 2024-01-17 1.473 -0.660 -0.115 -1.006 0.627 2024-01-18 -0.052 -0.110 0.809 0.208 -1.809 2024-01-19 0.172 -0.063 0.713 0.211 -1.000 done successfully. Executing test function test.substituteNA ... 1 2 3 4 5 1 0.609 NA NA 0.838 -0.081 2 -0.732 -0.445 -0.656 NA -0.214 3 0.646 NA 0.488 -0.071 -0.968 4 -0.196 NA 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 NA 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 NA -1.236 3.120 -1.855 15 NA 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 NA -0.911 -0.023 0.785 1 2 3 4 5 1 0.609 0.000 0.000 0.838 -0.081 2 -0.732 -0.445 -0.656 0.000 -0.214 3 0.646 0.000 0.488 -0.071 -0.968 4 -0.196 0.000 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 0.000 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 0.000 -1.236 3.120 -1.855 15 0.000 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 0.000 -0.911 -0.023 0.785 1 2 3 4 5 1 0.6090000 0.0224 0.4067368 0.838 -0.0810000 2 -0.7320000 -0.4450 -0.6560000 0.231 -0.2140000 3 0.6460000 0.0224 0.4880000 -0.071 -0.9680000 4 -0.1960000 0.0224 0.7830000 -0.152 -1.3870000 5 -0.6700000 -1.0120 -0.3470000 0.193 1.0030000 6 -1.8740000 -1.0560 -0.0490000 -0.973 0.3740000 7 -0.2340000 0.3400 -0.4660000 0.932 -0.3140000 8 2.0930000 2.3250 1.3390000 0.618 -0.7060000 9 2.6010000 0.1380 1.2870000 1.365 0.6250000 10 -1.3070000 -0.0320 1.4710000 -0.076 -0.0990000 11 1.1460000 0.2110 0.4600000 1.362 -0.2491579 12 -0.8780000 0.1490 0.5670000 0.169 1.0810000 13 -1.4130000 0.7910 1.5560000 -0.938 -0.3570000 14 -0.4280000 0.0224 -1.2360000 3.120 -1.8550000 15 0.1082105 0.4700 1.0690000 -0.759 0.2100000 16 0.9360000 -0.7100 0.9660000 -0.629 -0.6490000 17 1.4730000 -0.6600 -0.1150000 -1.006 0.6270000 18 -0.0520000 -0.1100 0.8090000 0.208 -1.8090000 19 0.1720000 -0.0630 0.7130000 0.211 -1.0000000 20 0.1640000 0.0224 -0.9110000 -0.023 0.7850000 1 2 3 4 5 1 0.609 -0.032 0.567 0.838 -0.081 2 -0.732 -0.445 -0.656 0.169 -0.214 3 0.646 -0.032 0.488 -0.071 -0.968 4 -0.196 -0.032 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 -0.214 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 -0.032 -1.236 3.120 -1.855 15 -0.052 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 -0.032 -0.911 -0.023 0.785 1 2 3 4 5 1 0.609 NA NA 0.838 -0.081 2 -0.732 -0.445 -0.656 NA -0.214 3 0.646 NA 0.488 -0.071 -0.968 4 -0.196 NA 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 NA 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 NA -1.236 3.120 -1.855 15 NA 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 NA -0.911 -0.023 0.785 1 2 3 4 5 1 0.609 0.000 0.000 0.838 -0.081 2 -0.732 -0.445 -0.656 0.000 -0.214 3 0.646 0.000 0.488 -0.071 -0.968 4 -0.196 0.000 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 0.000 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 0.000 -1.236 3.120 -1.855 15 0.000 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 0.000 -0.911 -0.023 0.785 1 2 3 4 5 1 0.6090000 0.0224 0.4067368 0.838 -0.0810000 2 -0.7320000 -0.4450 -0.6560000 0.231 -0.2140000 3 0.6460000 0.0224 0.4880000 -0.071 -0.9680000 4 -0.1960000 0.0224 0.7830000 -0.152 -1.3870000 5 -0.6700000 -1.0120 -0.3470000 0.193 1.0030000 6 -1.8740000 -1.0560 -0.0490000 -0.973 0.3740000 7 -0.2340000 0.3400 -0.4660000 0.932 -0.3140000 8 2.0930000 2.3250 1.3390000 0.618 -0.7060000 9 2.6010000 0.1380 1.2870000 1.365 0.6250000 10 -1.3070000 -0.0320 1.4710000 -0.076 -0.0990000 11 1.1460000 0.2110 0.4600000 1.362 -0.2491579 12 -0.8780000 0.1490 0.5670000 0.169 1.0810000 13 -1.4130000 0.7910 1.5560000 -0.938 -0.3570000 14 -0.4280000 0.0224 -1.2360000 3.120 -1.8550000 15 0.1082105 0.4700 1.0690000 -0.759 0.2100000 16 0.9360000 -0.7100 0.9660000 -0.629 -0.6490000 17 1.4730000 -0.6600 -0.1150000 -1.006 0.6270000 18 -0.0520000 -0.1100 0.8090000 0.208 -1.8090000 19 0.1720000 -0.0630 0.7130000 0.211 -1.0000000 20 0.1640000 0.0224 -0.9110000 -0.023 0.7850000 1 2 3 4 5 1 0.609 -0.032 0.567 0.838 -0.081 2 -0.732 -0.445 -0.656 0.169 -0.214 3 0.646 -0.032 0.488 -0.071 -0.968 4 -0.196 -0.032 0.783 -0.152 -1.387 5 -0.670 -1.012 -0.347 0.193 1.003 6 -1.874 -1.056 -0.049 -0.973 0.374 7 -0.234 0.340 -0.466 0.932 -0.314 8 2.093 2.325 1.339 0.618 -0.706 9 2.601 0.138 1.287 1.365 0.625 10 -1.307 -0.032 1.471 -0.076 -0.099 11 1.146 0.211 0.460 1.362 -0.214 12 -0.878 0.149 0.567 0.169 1.081 13 -1.413 0.791 1.556 -0.938 -0.357 14 -0.428 -0.032 -1.236 3.120 -1.855 15 -0.052 0.470 1.069 -0.759 0.210 16 0.936 -0.710 0.966 -0.629 -0.649 17 1.473 -0.660 -0.115 -1.006 0.627 18 -0.052 -0.110 0.809 0.208 -1.809 19 0.172 -0.063 0.713 0.211 -1.000 20 0.164 -0.032 -0.911 -0.023 0.785 GMT 1 2 3 4 5 2024-01-01 0.609 NA NA 0.838 -0.081 2024-01-02 -0.732 -0.445 -0.656 NA -0.214 2024-01-03 0.646 NA 0.488 -0.071 -0.968 2024-01-04 -0.196 NA 0.783 -0.152 -1.387 2024-01-05 -0.670 -1.012 -0.347 0.193 1.003 2024-01-06 -1.874 -1.056 -0.049 -0.973 0.374 2024-01-07 -0.234 0.340 -0.466 0.932 -0.314 2024-01-08 2.093 2.325 1.339 0.618 -0.706 2024-01-09 2.601 0.138 1.287 1.365 0.625 2024-01-10 -1.307 -0.032 1.471 -0.076 -0.099 2024-01-11 1.146 0.211 0.460 1.362 NA 2024-01-12 -0.878 0.149 0.567 0.169 1.081 2024-01-13 -1.413 0.791 1.556 -0.938 -0.357 2024-01-14 -0.428 NA -1.236 3.120 -1.855 2024-01-15 NA 0.470 1.069 -0.759 0.210 2024-01-16 0.936 -0.710 0.966 -0.629 -0.649 2024-01-17 1.473 -0.660 -0.115 -1.006 0.627 2024-01-18 -0.052 -0.110 0.809 0.208 -1.809 2024-01-19 0.172 -0.063 0.713 0.211 -1.000 2024-01-20 0.164 NA -0.911 -0.023 0.785 GMT 1 2 3 4 5 2024-01-01 0.609 0.000 0.000 0.838 -0.081 2024-01-02 -0.732 -0.445 -0.656 0.000 -0.214 2024-01-03 0.646 0.000 0.488 -0.071 -0.968 2024-01-04 -0.196 0.000 0.783 -0.152 -1.387 2024-01-05 -0.670 -1.012 -0.347 0.193 1.003 2024-01-06 -1.874 -1.056 -0.049 -0.973 0.374 2024-01-07 -0.234 0.340 -0.466 0.932 -0.314 2024-01-08 2.093 2.325 1.339 0.618 -0.706 2024-01-09 2.601 0.138 1.287 1.365 0.625 2024-01-10 -1.307 -0.032 1.471 -0.076 -0.099 2024-01-11 1.146 0.211 0.460 1.362 0.000 2024-01-12 -0.878 0.149 0.567 0.169 1.081 2024-01-13 -1.413 0.791 1.556 -0.938 -0.357 2024-01-14 -0.428 0.000 -1.236 3.120 -1.855 2024-01-15 0.000 0.470 1.069 -0.759 0.210 2024-01-16 0.936 -0.710 0.966 -0.629 -0.649 2024-01-17 1.473 -0.660 -0.115 -1.006 0.627 2024-01-18 -0.052 -0.110 0.809 0.208 -1.809 2024-01-19 0.172 -0.063 0.713 0.211 -1.000 2024-01-20 0.164 0.000 -0.911 -0.023 0.785 GMT 1 2 3 4 5 2024-01-01 0.6090000 0.0224 0.4067368 0.838 -0.0810000 2024-01-02 -0.7320000 -0.4450 -0.6560000 0.231 -0.2140000 2024-01-03 0.6460000 0.0224 0.4880000 -0.071 -0.9680000 2024-01-04 -0.1960000 0.0224 0.7830000 -0.152 -1.3870000 2024-01-05 -0.6700000 -1.0120 -0.3470000 0.193 1.0030000 2024-01-06 -1.8740000 -1.0560 -0.0490000 -0.973 0.3740000 2024-01-07 -0.2340000 0.3400 -0.4660000 0.932 -0.3140000 2024-01-08 2.0930000 2.3250 1.3390000 0.618 -0.7060000 2024-01-09 2.6010000 0.1380 1.2870000 1.365 0.6250000 2024-01-10 -1.3070000 -0.0320 1.4710000 -0.076 -0.0990000 2024-01-11 1.1460000 0.2110 0.4600000 1.362 -0.2491579 2024-01-12 -0.8780000 0.1490 0.5670000 0.169 1.0810000 2024-01-13 -1.4130000 0.7910 1.5560000 -0.938 -0.3570000 2024-01-14 -0.4280000 0.0224 -1.2360000 3.120 -1.8550000 2024-01-15 0.1082105 0.4700 1.0690000 -0.759 0.2100000 2024-01-16 0.9360000 -0.7100 0.9660000 -0.629 -0.6490000 2024-01-17 1.4730000 -0.6600 -0.1150000 -1.006 0.6270000 2024-01-18 -0.0520000 -0.1100 0.8090000 0.208 -1.8090000 2024-01-19 0.1720000 -0.0630 0.7130000 0.211 -1.0000000 2024-01-20 0.1640000 0.0224 -0.9110000 -0.023 0.7850000 GMT 1 2 3 4 5 2024-01-01 0.609 -0.032 0.567 0.838 -0.081 2024-01-02 -0.732 -0.445 -0.656 0.169 -0.214 2024-01-03 0.646 -0.032 0.488 -0.071 -0.968 2024-01-04 -0.196 -0.032 0.783 -0.152 -1.387 2024-01-05 -0.670 -1.012 -0.347 0.193 1.003 2024-01-06 -1.874 -1.056 -0.049 -0.973 0.374 2024-01-07 -0.234 0.340 -0.466 0.932 -0.314 2024-01-08 2.093 2.325 1.339 0.618 -0.706 2024-01-09 2.601 0.138 1.287 1.365 0.625 2024-01-10 -1.307 -0.032 1.471 -0.076 -0.099 2024-01-11 1.146 0.211 0.460 1.362 -0.214 2024-01-12 -0.878 0.149 0.567 0.169 1.081 2024-01-13 -1.413 0.791 1.556 -0.938 -0.357 2024-01-14 -0.428 -0.032 -1.236 3.120 -1.855 2024-01-15 -0.052 0.470 1.069 -0.759 0.210 2024-01-16 0.936 -0.710 0.966 -0.629 -0.649 2024-01-17 1.473 -0.660 -0.115 -1.006 0.627 2024-01-18 -0.052 -0.110 0.809 0.208 -1.809 2024-01-19 0.172 -0.063 0.713 0.211 -1.000 2024-01-20 0.164 -0.032 -0.911 -0.023 0.785 done successfully. Executing test function test.na.omit ... GMT SBI SPI SII LMI 2005-11-01 NA 0.008414595 -0.003190926 -0.001108882 2005-11-02 -0.002762009 0.002519342 -0.004117638 -0.001175939 2005-11-03 -0.001153092 NA -0.005209409 -0.000992456 2005-11-04 -0.003235750 NA -0.001127165 -0.001198528 2005-11-07 0.001310970 0.006205226 -0.001795839 0.000360366 2005-11-08 0.000539312 0.000329260 0.002103374 0.002327040 2005-11-09 -0.002545021 -0.002378200 -0.001897972 -0.002039593 2005-11-10 0.001003358 0.000922087 0.001026378 0.001439840 2005-11-11 0.000616951 0.013334906 0.000461527 0.000652177 2005-11-14 0.000693615 -0.004693064 -0.000871951 -0.000695799 2005-11-15 0.000154071 0.001266865 -0.006073414 0.001779738 2005-11-16 0.002999656 -0.007187498 0.000206484 0.002773424 2005-11-17 -0.001306436 0.007658103 -0.001136188 0.000673362 2005-11-18 -0.002232573 0.012527202 -0.003053438 -0.002104413 2005-11-21 0.001155402 0.002659666 0.000621794 0.002349427 2005-11-22 -0.000230974 0.002142494 -0.001762755 0.000883765 2005-11-23 0.000692761 0.003567128 0.001140961 -0.000315378 2005-11-24 0.002075407 -0.002559544 -0.000103670 NA 2005-11-25 -0.000614487 0.003374818 0.001760929 NA 2005-11-28 -0.000307385 -0.009816739 -0.002175716 NA done successfully. Executing test function test.naOmitMatrix ... GMT SBI SPI SII LMI 2005-11-01 NA 0.008414595 -0.003190926 -0.001108882 2005-11-02 -0.002762009 0.002519342 -0.004117638 -0.001175939 2005-11-03 -0.001153092 NA -0.005209409 -0.000992456 2005-11-04 -0.003235750 NA -0.001127165 -0.001198528 2005-11-07 0.001310970 0.006205226 -0.001795839 0.000360366 2005-11-08 0.000539312 0.000329260 0.002103374 0.002327040 2005-11-09 -0.002545021 -0.002378200 -0.001897972 -0.002039593 2005-11-10 0.001003358 0.000922087 0.001026378 0.001439840 2005-11-11 0.000616951 0.013334906 0.000461527 0.000652177 2005-11-14 0.000693615 -0.004693064 -0.000871951 -0.000695799 2005-11-15 0.000154071 0.001266865 -0.006073414 0.001779738 2005-11-16 0.002999656 -0.007187498 0.000206484 0.002773424 2005-11-17 -0.001306436 0.007658103 -0.001136188 0.000673362 2005-11-18 -0.002232573 0.012527202 -0.003053438 -0.002104413 2005-11-21 0.001155402 0.002659666 0.000621794 0.002349427 2005-11-22 -0.000230974 0.002142494 -0.001762755 0.000883765 2005-11-23 0.000692761 0.003567128 0.001140961 -0.000315378 2005-11-24 0.002075407 -0.002559544 -0.000103670 NA 2005-11-25 -0.000614487 0.003374818 0.001760929 NA 2005-11-28 -0.000307385 -0.009816739 -0.002175716 NA done successfully. Executing test function test.alignDailySeries ... GMT Open High Low Close Volume 2000-09-27 63.4375 63.5625 59.8125 60.6250 53077800 2000-09-28 60.8125 61.8750 60.6250 61.3125 26180200 2000-09-29 61.0000 61.3125 58.6250 60.3125 37026800 2000-10-02 60.5000 60.8125 58.2500 59.1250 29281200 2000-10-03 59.5625 59.8125 56.5000 56.5625 42687000 2000-10-04 56.3750 56.5625 54.5000 55.4375 68226700 2000-10-05 55.5000 57.2500 55.2500 55.3750 40549700 2000-10-06 55.8125 56.7500 54.7500 55.5625 30897000 2000-10-09 55.6250 55.7500 53.0000 54.1875 29161800 2000-10-10 53.9375 55.5625 53.8125 54.5625 31033100 2000-10-11 54.0000 56.9375 54.0000 55.7500 50602900 2000-10-12 56.3125 56.8750 53.8125 54.3750 45109800 2000-10-13 53.8750 54.8750 52.1250 53.7500 52260600 2000-10-16 53.5000 53.8125 49.5625 50.3750 59879500 2000-10-17 51.8750 52.4375 50.2500 50.4375 40638300 2000-10-18 49.6250 53.2500 48.4375 51.7500 55268200 2000-10-19 58.4375 62.1875 58.0000 61.8750 128496600 2000-10-20 61.3125 66.1250 61.1250 65.1875 80189300 2000-10-23 64.6250 66.2500 60.6875 62.1250 92585200 2000-10-24 62.6250 62.9375 60.1875 61.5000 47213700 2000-10-25 61.9375 63.4375 60.4375 61.2500 83801900 2000-10-26 61.0000 65.0625 60.8125 64.4375 57413300 2000-10-27 64.6875 69.1875 64.6250 67.6875 62146200 2000-10-30 67.5000 70.1250 67.3750 69.0625 55028800 2000-10-31 69.0000 69.5000 68.0000 68.8750 52237000 done successfully. Executing test function test.applySeries ... done successfully. Executing test function test.displayMethods ... GMT Open High Low Close Volume 2000-09-27 63.4375 63.5625 59.8125 60.6250 53077800 2000-09-28 60.8125 61.8750 60.6250 61.3125 26180200 2000-09-29 61.0000 61.3125 58.6250 60.3125 37026800 2000-10-02 60.5000 60.8125 58.2500 59.1250 29281200 2000-10-03 59.5625 59.8125 56.5000 56.5625 42687000 2000-10-04 56.3750 56.5625 54.5000 55.4375 68226700 2000-10-05 55.5000 57.2500 55.2500 55.3750 40549700 2000-10-06 55.8125 56.7500 54.7500 55.5625 30897000 2000-10-09 55.6250 55.7500 53.0000 54.1875 29161800 2000-10-10 53.9375 55.5625 53.8125 54.5625 31033100 2000-10-11 54.0000 56.9375 54.0000 55.7500 50602900 2000-10-12 56.3125 56.8750 53.8125 54.3750 45109800 GMT Open 2000-09-27 63.4375 2000-09-28 60.8125 2000-09-29 61.0000 2000-10-02 60.5000 2000-10-03 59.5625 2000-10-04 56.3750 2000-10-05 55.5000 2000-10-06 55.8125 2000-10-09 55.6250 2000-10-10 53.9375 2000-10-11 54.0000 2000-10-12 56.3125 done successfully. Executing test function test.dummyDailySeries ... GMT X1 1970-01-01 0.2322771 1970-01-02 -0.1097153 1970-01-03 -0.9046851 1970-01-04 -0.7343891 1970-01-05 -0.8975058 1970-01-06 -0.3583743 1970-01-07 -1.3940713 1970-01-08 -0.2121921 1970-01-09 0.2147751 1970-01-10 -0.4685537 1970-01-11 -0.1282252 1970-01-12 -0.6281856 done successfully. Executing test function test.isMultivariate ... done successfully. Executing test function test.isUnivariate ... done successfully. Executing test function test.modelSeries ... done successfully. Executing test function test.orderStatistics ... GMT Open 2000-09-27 63.4375 2000-09-28 60.8125 2000-09-29 61.0000 2000-10-02 60.5000 2000-10-03 59.5625 2000-10-04 56.3750 2000-10-05 55.5000 2000-10-06 55.8125 2000-10-09 55.6250 2000-10-10 53.9375 2000-10-11 54.0000 2000-10-12 56.3125 2000-10-13 53.8750 2000-10-16 53.5000 2000-10-17 51.8750 2000-10-18 49.6250 2000-10-19 58.4375 2000-10-20 61.3125 2000-10-23 64.6250 2000-10-24 62.6250 2000-10-25 61.9375 2000-10-26 61.0000 2000-10-27 64.6875 2000-10-30 67.5000 2000-10-31 69.0000 2000-11-01 68.5000 2000-11-02 70.3750 2000-11-03 69.2500 2000-11-06 68.6875 2000-11-07 69.7500 2000-11-08 71.1250 2000-11-09 68.5000 2000-11-10 69.9375 2000-11-13 66.6875 2000-11-14 68.0000 2000-11-15 69.0625 2000-11-16 69.4375 2000-11-17 69.4375 2000-11-20 68.1250 2000-11-21 67.3750 2000-11-22 66.0625 2000-11-24 69.0000 2000-11-27 71.4375 2000-11-28 69.3750 2000-11-29 66.8125 2000-11-30 62.0000 2000-12-01 58.0625 2000-12-04 57.2500 2000-12-05 59.1875 2000-12-06 60.0000 2000-12-07 53.4375 2000-12-08 54.6250 2000-12-11 55.5000 2000-12-12 57.8125 2000-12-13 60.5000 2000-12-14 57.9375 2000-12-15 51.0469 2000-12-18 49.0000 2000-12-19 47.4375 2000-12-20 42.8125 2000-12-21 40.7500 2000-12-22 44.7500 2000-12-26 46.8750 2000-12-27 46.1250 2000-12-28 45.1250 2000-12-29 43.9375 2001-01-02 44.1250 2001-01-03 43.1875 2001-01-04 47.8125 2001-01-05 48.5000 2001-01-08 48.9375 2001-01-09 50.0000 2001-01-10 51.0000 2001-01-11 53.0000 2001-01-12 54.8750 2001-01-16 53.3750 2001-01-17 53.6250 2001-01-18 53.6875 2001-01-19 60.0000 2001-01-22 60.7500 2001-01-23 59.7500 2001-01-24 61.0000 2001-01-25 62.7500 2001-01-26 61.0000 2001-01-29 63.5625 2001-01-30 64.5000 2001-01-31 63.0000 2001-02-01 60.8125 2001-02-02 62.5000 2001-02-05 60.7500 2001-02-06 62.0625 2001-02-07 62.0000 2001-02-08 63.7500 2001-02-09 61.3125 2001-02-12 58.8125 2001-02-13 59.6250 2001-02-14 57.6250 2001-02-15 59.0000 2001-02-16 57.0000 2001-02-20 57.3750 2001-02-21 55.2500 2001-02-22 56.3125 2001-02-23 54.4375 2001-02-26 57.6250 2001-02-27 59.3750 2001-02-28 59.5625 2001-03-01 58.5625 2001-03-02 57.5000 2001-03-05 57.2500 2001-03-06 58.6250 2001-03-07 59.8750 2001-03-08 60.3125 2001-03-09 57.9375 2001-03-12 54.6875 2001-03-13 52.1875 2001-03-14 52.5000 2001-03-15 55.3125 2001-03-16 52.5000 2001-03-19 54.5000 2001-03-20 54.5625 2001-03-21 52.2500 2001-03-22 50.5625 2001-03-23 54.9375 2001-03-26 57.1250 2001-03-27 56.0625 2001-03-28 57.3750 2001-03-29 55.3750 2001-03-30 55.7500 2001-04-02 54.8125 2001-04-03 55.3125 2001-04-04 53.3750 2001-04-05 53.7500 2001-04-06 56.3750 2001-04-09 56.5700 2001-04-10 57.9500 2001-04-11 60.6500 2001-04-12 59.5600 2001-04-16 61.4000 2001-04-17 60.5200 2001-04-18 63.3900 2001-04-19 65.8100 2001-04-20 70.3000 2001-04-23 68.1100 2001-04-24 68.2000 2001-04-25 67.5700 2001-04-26 70.0700 2001-04-27 69.5300 2001-04-30 68.5300 2001-05-01 67.6600 2001-05-02 71.0000 2001-05-03 69.2500 2001-05-04 68.0000 2001-05-07 70.8300 2001-05-08 71.7500 2001-05-09 71.2400 2001-05-10 71.1300 2001-05-11 69.9600 2001-05-14 69.1300 2001-05-15 68.7400 2001-05-16 67.7000 2001-05-17 69.1000 2001-05-18 67.6900 2001-05-21 68.0500 2001-05-22 69.4500 2001-05-23 70.3900 2001-05-24 69.9400 2001-05-25 71.6600 2001-05-29 70.8000 2001-05-30 69.5600 2001-05-31 69.4900 2001-06-01 69.6000 2001-06-04 70.5500 2001-06-05 70.7600 2001-06-06 72.8900 2001-06-07 72.1200 2001-06-08 73.7000 2001-06-11 72.8500 2001-06-12 71.0200 2001-06-13 72.0500 2001-06-14 70.2200 2001-06-15 67.5100 2001-06-18 67.9500 2001-06-19 68.2100 2001-06-20 67.1400 2001-06-21 69.1500 2001-06-22 70.0000 2001-06-25 69.1000 2001-06-26 67.8200 2001-06-27 69.8600 2001-06-28 71.5500 2001-06-29 72.6000 2001-07-02 72.0500 2001-07-03 70.3000 2001-07-05 70.2200 2001-07-06 68.3000 2001-07-09 66.2000 2001-07-10 65.9000 2001-07-11 64.2100 2001-07-12 70.7000 2001-07-13 71.4000 2001-07-16 71.4500 2001-07-17 70.6600 2001-07-18 70.6000 2001-07-19 71.2200 2001-07-20 68.0300 2001-07-23 69.2400 2001-07-24 67.0000 2001-07-25 66.2600 2001-07-26 67.1200 2001-07-27 66.0500 2001-07-30 65.6500 2001-07-31 66.0100 2001-08-01 66.8000 2001-08-02 67.2100 2001-08-03 67.3000 2001-08-06 66.5300 2001-08-07 66.0400 2001-08-08 66.5100 2001-08-09 64.9800 2001-08-10 64.7700 2001-08-13 65.2400 2001-08-14 65.7500 2001-08-15 64.7100 2001-08-16 62.8400 2001-08-17 63.7800 2001-08-20 61.6600 2001-08-21 62.7000 2001-08-22 61.1300 2001-08-23 60.6700 2001-08-24 59.6000 2001-08-27 61.9000 2001-08-28 62.3400 2001-08-29 61.0500 2001-08-30 59.0400 2001-08-31 56.8500 2001-09-04 57.1900 2001-09-05 56.1800 2001-09-06 56.5600 2001-09-07 56.1100 2001-09-10 54.9200 2001-09-17 54.0200 2001-09-18 53.4100 2001-09-19 54.4600 2001-09-20 52.3500 2001-09-21 47.9200 2001-09-24 50.6500 2001-09-25 52.2700 2001-09-26 51.5100 2001-09-27 50.1000 done successfully. Executing test function test.readSeries ... done successfully. Executing test function test.returns ... GMT Open 2000-09-27 63.4375 2000-09-28 60.8125 2000-09-29 61.0000 2000-10-02 60.5000 2000-10-03 59.5625 2000-10-04 56.3750 2000-10-05 55.5000 2000-10-06 55.8125 2000-10-09 55.6250 2000-10-10 53.9375 2000-10-11 54.0000 2000-10-12 56.3125 2000-10-13 53.8750 2000-10-16 53.5000 2000-10-17 51.8750 2000-10-18 49.6250 2000-10-19 58.4375 2000-10-20 61.3125 2000-10-23 64.6250 2000-10-24 62.6250 2000-10-25 61.9375 2000-10-26 61.0000 2000-10-27 64.6875 2000-10-30 67.5000 2000-10-31 69.0000 2000-11-01 68.5000 2000-11-02 70.3750 2000-11-03 69.2500 2000-11-06 68.6875 2000-11-07 69.7500 2000-11-08 71.1250 2000-11-09 68.5000 2000-11-10 69.9375 2000-11-13 66.6875 2000-11-14 68.0000 2000-11-15 69.0625 2000-11-16 69.4375 2000-11-17 69.4375 2000-11-20 68.1250 2000-11-21 67.3750 2000-11-22 66.0625 2000-11-24 69.0000 2000-11-27 71.4375 2000-11-28 69.3750 2000-11-29 66.8125 2000-11-30 62.0000 2000-12-01 58.0625 2000-12-04 57.2500 2000-12-05 59.1875 2000-12-06 60.0000 2000-12-07 53.4375 2000-12-08 54.6250 2000-12-11 55.5000 2000-12-12 57.8125 2000-12-13 60.5000 2000-12-14 57.9375 2000-12-15 51.0469 2000-12-18 49.0000 2000-12-19 47.4375 2000-12-20 42.8125 2000-12-21 40.7500 2000-12-22 44.7500 2000-12-26 46.8750 2000-12-27 46.1250 2000-12-28 45.1250 2000-12-29 43.9375 2001-01-02 44.1250 2001-01-03 43.1875 2001-01-04 47.8125 2001-01-05 48.5000 2001-01-08 48.9375 2001-01-09 50.0000 2001-01-10 51.0000 2001-01-11 53.0000 2001-01-12 54.8750 2001-01-16 53.3750 2001-01-17 53.6250 2001-01-18 53.6875 2001-01-19 60.0000 2001-01-22 60.7500 2001-01-23 59.7500 2001-01-24 61.0000 2001-01-25 62.7500 2001-01-26 61.0000 2001-01-29 63.5625 2001-01-30 64.5000 2001-01-31 63.0000 2001-02-01 60.8125 2001-02-02 62.5000 2001-02-05 60.7500 2001-02-06 62.0625 2001-02-07 62.0000 2001-02-08 63.7500 2001-02-09 61.3125 2001-02-12 58.8125 2001-02-13 59.6250 2001-02-14 57.6250 2001-02-15 59.0000 2001-02-16 57.0000 2001-02-20 57.3750 2001-02-21 55.2500 2001-02-22 56.3125 2001-02-23 54.4375 2001-02-26 57.6250 2001-02-27 59.3750 2001-02-28 59.5625 2001-03-01 58.5625 2001-03-02 57.5000 2001-03-05 57.2500 2001-03-06 58.6250 2001-03-07 59.8750 2001-03-08 60.3125 2001-03-09 57.9375 2001-03-12 54.6875 2001-03-13 52.1875 2001-03-14 52.5000 2001-03-15 55.3125 2001-03-16 52.5000 2001-03-19 54.5000 2001-03-20 54.5625 2001-03-21 52.2500 2001-03-22 50.5625 2001-03-23 54.9375 2001-03-26 57.1250 2001-03-27 56.0625 2001-03-28 57.3750 2001-03-29 55.3750 2001-03-30 55.7500 2001-04-02 54.8125 2001-04-03 55.3125 2001-04-04 53.3750 2001-04-05 53.7500 2001-04-06 56.3750 2001-04-09 56.5700 2001-04-10 57.9500 2001-04-11 60.6500 2001-04-12 59.5600 2001-04-16 61.4000 2001-04-17 60.5200 2001-04-18 63.3900 2001-04-19 65.8100 2001-04-20 70.3000 2001-04-23 68.1100 2001-04-24 68.2000 2001-04-25 67.5700 2001-04-26 70.0700 2001-04-27 69.5300 2001-04-30 68.5300 2001-05-01 67.6600 2001-05-02 71.0000 2001-05-03 69.2500 2001-05-04 68.0000 2001-05-07 70.8300 2001-05-08 71.7500 2001-05-09 71.2400 2001-05-10 71.1300 2001-05-11 69.9600 2001-05-14 69.1300 2001-05-15 68.7400 2001-05-16 67.7000 2001-05-17 69.1000 2001-05-18 67.6900 2001-05-21 68.0500 2001-05-22 69.4500 2001-05-23 70.3900 2001-05-24 69.9400 2001-05-25 71.6600 2001-05-29 70.8000 2001-05-30 69.5600 2001-05-31 69.4900 2001-06-01 69.6000 2001-06-04 70.5500 2001-06-05 70.7600 2001-06-06 72.8900 2001-06-07 72.1200 2001-06-08 73.7000 2001-06-11 72.8500 2001-06-12 71.0200 2001-06-13 72.0500 2001-06-14 70.2200 2001-06-15 67.5100 2001-06-18 67.9500 2001-06-19 68.2100 2001-06-20 67.1400 2001-06-21 69.1500 2001-06-22 70.0000 2001-06-25 69.1000 2001-06-26 67.8200 2001-06-27 69.8600 2001-06-28 71.5500 2001-06-29 72.6000 2001-07-02 72.0500 2001-07-03 70.3000 2001-07-05 70.2200 2001-07-06 68.3000 2001-07-09 66.2000 2001-07-10 65.9000 2001-07-11 64.2100 2001-07-12 70.7000 2001-07-13 71.4000 2001-07-16 71.4500 2001-07-17 70.6600 2001-07-18 70.6000 2001-07-19 71.2200 2001-07-20 68.0300 2001-07-23 69.2400 2001-07-24 67.0000 2001-07-25 66.2600 2001-07-26 67.1200 2001-07-27 66.0500 2001-07-30 65.6500 2001-07-31 66.0100 2001-08-01 66.8000 2001-08-02 67.2100 2001-08-03 67.3000 2001-08-06 66.5300 2001-08-07 66.0400 2001-08-08 66.5100 2001-08-09 64.9800 2001-08-10 64.7700 2001-08-13 65.2400 2001-08-14 65.7500 2001-08-15 64.7100 2001-08-16 62.8400 2001-08-17 63.7800 2001-08-20 61.6600 2001-08-21 62.7000 2001-08-22 61.1300 2001-08-23 60.6700 2001-08-24 59.6000 2001-08-27 61.9000 2001-08-28 62.3400 2001-08-29 61.0500 2001-08-30 59.0400 2001-08-31 56.8500 2001-09-04 57.1900 2001-09-05 56.1800 2001-09-06 56.5600 2001-09-07 56.1100 2001-09-10 54.9200 2001-09-17 54.0200 2001-09-18 53.4100 2001-09-19 54.4600 2001-09-20 52.3500 2001-09-21 47.9200 2001-09-24 50.6500 2001-09-25 52.2700 2001-09-26 51.5100 2001-09-27 50.1000 GMT Open 2000-09-28 -0.0422598093 2000-09-29 0.0030785042 2000-10-02 -0.0082304991 2000-10-03 -0.0156171836 2000-10-04 -0.0550003836 2000-10-05 -0.0156427771 2000-10-06 0.0056148379 2000-10-09 -0.0033651182 2000-10-10 -0.0308067716 2000-10-11 0.0011580777 2000-10-12 0.0419324888 2000-10-13 -0.0442499869 2000-10-16 -0.0069848945 2000-10-17 -0.0308446754 2000-10-18 -0.0443422395 2000-10-19 0.1634630680 2000-10-20 0.0480259303 2000-10-23 0.0526175955 2000-10-24 -0.0314367734 2000-10-25 -0.0110387473 2000-10-26 -0.0152519479 2000-10-27 0.0586941193 2000-10-30 0.0425596144 2000-10-31 0.0219789067 2000-11-01 -0.0072727593 2000-11-02 0.0270043412 2000-11-03 -0.0161149414 2000-11-06 -0.0081559129 2000-11-07 0.0153501885 2000-11-08 0.0195214717 2000-11-09 -0.0376051472 2000-11-10 0.0207682408 2000-11-13 -0.0475844570 2000-11-14 0.0194901761 2000-11-15 0.0155041865 2000-11-16 0.0054151757 2000-11-17 0.0000000000 2000-11-20 -0.0190828144 2000-11-21 -0.0110702238 2000-11-22 -0.0196727656 2000-11-24 0.0435052410 2000-11-27 0.0347164370 2000-11-28 -0.0292963695 2000-11-29 -0.0376363833 2000-11-30 -0.0747558037 2000-12-01 -0.0656143685 2000-12-04 -0.0140923741 2000-12-05 0.0332827285 2000-12-06 0.0136341913 2000-12-07 -0.1158318155 2000-12-08 0.0219789067 2000-12-11 0.0158913673 2000-12-12 0.0408219945 2000-12-13 0.0454383498 2000-12-14 -0.0432785217 2000-12-15 -0.1266200253 2000-12-18 -0.0409245199 2000-12-19 -0.0324072430 2000-12-20 -0.1025829391 2000-12-21 -0.0493742763 2000-12-22 0.0936356050 2000-12-26 0.0463930396 2000-12-27 -0.0161293819 2000-12-28 -0.0219186857 2000-12-29 -0.0266682471 2001-01-02 0.0042583457 2001-01-03 -0.0214754137 2001-01-04 0.1017360101 2001-01-05 0.0142766864 2001-01-08 0.0089801758 2001-01-09 0.0214790317 2001-01-10 0.0198026273 2001-01-11 0.0384662808 2001-01-12 0.0347659578 2001-01-16 -0.0277153998 2001-01-17 0.0046729057 2001-01-18 0.0011648225 2001-01-19 0.1111643625 2001-01-22 0.0124225200 2001-01-23 -0.0165978914 2001-01-24 0.0207046734 2001-01-25 0.0282847138 2001-01-26 -0.0282847138 2001-01-29 0.0411498096 2001-01-30 0.0146415500 2001-01-31 -0.0235304974 2001-02-01 -0.0353393664 2001-02-02 0.0273711968 2001-02-05 -0.0283994745 2001-02-06 0.0213748596 2001-02-07 -0.0010075568 2001-02-08 0.0278347990 2001-02-09 -0.0389854467 2001-02-12 -0.0416293200 2001-02-13 0.0137205319 2001-02-14 -0.0341184479 2001-02-15 0.0235809426 2001-02-16 -0.0344861761 2001-02-20 0.0065574005 2001-02-21 -0.0377403280 2001-02-22 0.0190481950 2001-02-23 -0.0338632808 2001-02-26 0.0569032467 2001-02-27 0.0299167610 2001-02-28 0.0031529191 2001-03-01 -0.0169316214 2001-03-02 -0.0183096122 2001-03-05 -0.0043573054 2001-03-06 0.0237335843 2001-03-07 0.0210978290 2001-03-08 0.0072803234 2001-03-09 -0.0401745358 2001-03-12 -0.0577296792 2001-03-13 -0.0467921615 2001-03-14 0.0059701670 2001-03-15 0.0521857532 2001-03-16 -0.0521857532 2001-03-19 0.0373875321 2001-03-20 0.0011461319 2001-03-21 -0.0433069428 2001-03-22 -0.0328296960 2001-03-23 0.0829859806 2001-03-26 0.0390456738 2001-03-27 -0.0187747094 2001-03-28 0.0231415286 2001-03-29 -0.0354804400 2001-03-30 0.0067491820 2001-04-02 -0.0169591402 2001-04-03 0.0090806526 2001-04-04 -0.0356564512 2001-04-05 0.0070011955 2001-04-06 0.0476821308 2001-04-09 0.0034530115 2001-04-10 0.0241017604 2001-04-11 0.0455390656 2001-04-12 -0.0181354276 2001-04-16 0.0304256273 2001-04-17 -0.0144359462 2001-04-18 0.0463322314 2001-04-19 0.0374656822 2001-04-20 0.0659999963 2001-04-23 -0.0316477536 2001-04-24 0.0013205196 2001-04-25 -0.0092804673 2001-04-26 0.0363306448 2001-04-27 -0.0077364283 2001-04-30 -0.0144867085 2001-05-01 -0.0127764422 2001-05-02 0.0481847137 2001-05-03 -0.0249567320 2001-05-04 -0.0182154399 2001-05-07 0.0407749346 2001-05-08 0.0129052149 2001-05-09 -0.0071333962 2001-05-10 -0.0015452697 2001-05-11 -0.0165855386 2001-05-14 -0.0119348602 2001-05-15 -0.0056575185 2001-05-16 -0.0152450915 2001-05-17 0.0204685509 2001-05-18 -0.0206162723 2001-05-21 0.0053042706 2001-05-22 0.0203643401 2001-05-23 0.0134441384 2001-05-24 -0.0064134760 2001-05-25 0.0242949802 2001-05-29 -0.0120737112 2001-05-30 -0.0176693112 2001-05-31 -0.0010068322 2001-06-01 0.0015817100 2001-06-04 0.0135571110 2001-06-05 0.0029721910 2001-06-06 0.0296575861 2001-06-07 -0.0106200571 2001-06-08 0.0216714009 2001-06-11 -0.0116002666 2001-06-12 -0.0254410051 2001-06-13 0.0143987949 2001-06-14 -0.0257271517 2001-06-15 -0.0393574357 2001-06-18 0.0064964055 2001-06-19 0.0038190411 2001-06-20 -0.0158111901 2001-06-21 0.0294980666 2001-06-22 0.0122171839 2001-06-25 -0.0129405113 2001-06-26 -0.0186975941 2001-06-27 0.0296361027 2001-06-28 0.0239032666 2001-06-29 0.0145684158 2001-07-02 -0.0076045994 2001-07-03 -0.0245885236 2001-07-05 -0.0011386281 2001-07-06 -0.0277234042 2001-07-09 -0.0312293036 2001-07-10 -0.0045420214 2001-07-11 -0.0259794797 2001-07-12 0.0962866111 2001-07-13 0.0098522964 2001-07-16 0.0007000350 2001-07-17 -0.0111182624 2001-07-18 -0.0008494974 2001-07-19 0.0087435334 2001-07-20 -0.0458248935 2001-07-23 0.0176299460 2001-07-24 -0.0328861109 2001-07-25 -0.0111062225 2001-07-26 0.0128956653 2001-07-27 -0.0160700312 2001-07-30 -0.0060744302 2001-07-31 0.0054686450 2001-08-01 0.0118968348 2001-08-02 0.0061189654 2001-08-03 0.0013381907 2001-08-06 -0.0115072629 2001-08-07 -0.0073923547 2001-08-08 0.0070916932 2001-08-09 -0.0232727821 2001-08-10 -0.0032369970 2001-08-13 0.0072302446 2001-08-14 0.0077868933 2001-08-15 -0.0159439220 2001-08-16 -0.0293239357 2001-08-17 0.0148478482 2001-08-20 -0.0338042391 2001-08-21 0.0167260252 2001-08-22 -0.0253587036 2001-08-23 -0.0075534021 2001-08-24 -0.0177937679 2001-08-27 0.0378646056 2001-08-28 0.0070830946 2001-08-29 -0.0209100738 2001-08-30 -0.0334780203 2001-08-31 -0.0377989601 2001-09-04 0.0059628377 2001-09-05 -0.0178182363 2001-09-06 0.0067411999 2001-09-07 -0.0079879718 2001-09-10 -0.0214364689 2001-09-17 -0.0165232325 2001-09-18 -0.0113563540 2001-09-19 0.0194684929 2001-09-20 -0.0395145499 2001-09-21 -0.0884189835 2001-09-24 0.0554062769 2001-09-25 0.0314833620 2001-09-26 -0.0146466291 2001-09-27 -0.0277549555 done successfully. Executing test function test.series ... done successfully. Executing test function test.timeSeries ... GMT uTS 2006-01-01 0.026 2006-02-01 -0.298 2006-03-01 0.563 2006-04-01 -1.710 2006-05-01 -0.153 2006-06-01 -0.361 2006-07-01 1.285 2006-08-01 1.127 2006-09-01 -1.623 2006-10-01 -1.154 2006-11-01 0.675 2006-12-01 -1.345 done successfully. Executing test function test.asTimeSeries ... done successfully. Executing test function test.asTimeSeriesDJ1 ... done successfully. Executing test function test.fromTimeSeriesMV ... done successfully. Executing test function test.fromTimeSeriesUV ... done successfully. Executing test function test.diffTimeSeries ... done successfully. Executing test function test.dimOpsTimeSeries ... done successfully. Executing test function test.lagTimeSeries ... done successfully. Executing test function test.mathOpsTimeSeries ... done successfully. Executing test function test.mergeTimeSeries ... done successfully. Executing test function test.scaleTimeSeries ... done successfully. Executing test function test.subsetTimeSeries ... done successfully. Executing test function test.summaryTimeSeries ... done successfully. Executing test function test.varTimeSeries ... done successfully. Executing test function test.time ... done successfully. Executing test function test.time<- ... done successfully. Executing test function test.timeSeriesOrdering ... done successfully. Executing test function test.aggregate.timeSeries ... done successfully. Executing test function test.align.timeSeries ... done successfully. Executing test function test.apply ... done successfully. Executing test function test.as ... done successfully. Executing test function test.attach.timeSeries ... done successfully. Executing test function test.bind ... done successfully. Executing test function test.colCum ... done successfully. Executing test function test.colStats ... done successfully. Executing test function test.cor.timeSeries ... done successfully. Executing test function test.cumulated ... done successfully. Executing test function test.daily ... done successfully. Executing test function test.dim.timeSeries ... done successfully. Executing test function test.drawdowns ... done successfully. Executing test function test.durations ... done successfully. Executing test function test.lag ... done successfully. Executing test function test.mathOps ... done successfully. Executing test function test.merge.timeSeries ... done successfully. Executing test function test.plot ... done successfully. Executing test function test.print ... done successfully. Executing test function test.summary ... done successfully. Executing test function test.model.frame ... done successfully. Executing test function test.monthly ... done successfully. Executing test function test.na.contiguous ... done successfully. Executing test function test.order ... done successfully. Executing test function test.periodical ... done successfully. Executing test function test.rank ... done successfully. Executing test function test.returns ... done successfully. Executing test function test.rowCum ... done successfully. Executing test function test.signalCounts ... [1] " 1" "100" " 21" " 10" "135" done successfully. Executing test function test.spreads ... done successfully. Executing test function test.subset ... done successfully. Executing test function test.time ... done successfully. Executing test function test.signalSeries.Internal ... done successfully. Executing test function test.timeSeries.Internal ... done successfully. RUNIT TEST PROTOCOL -- Sat Sep 21 15:16:47 2024 *********************************************** Number of test functions: 67 Number of errors: 0 Number of failures: 0 1 Test Suite : timeSeries unit testing - 67 test functions, 0 errors, 0 failures There were 50 or more warnings (use warnings() to see the first 50) > > > ################################################################################ > > > proc.time() user system elapsed 1.92 0.32 2.23