Nothing
context("foreccomb")
test_that("Tests for invalid inputs to foreccomb", {
set.seed(5)
obs <- rnorm(100)
preds <- matrix(rnorm(1000, 1), 100, 10)
train_o<-obs[1:80]
train_p<-preds[1:80,]
test_o<-obs[81:100]
test_p<-preds[81:100,]
expect_error(foreccomb(NULL, train_p))
expect_error(foreccomb(train_o, NULL))
expect_error(foreccomb(NULL, train_p, test_o, test_p))
expect_error(foreccomb(train_o, NULL, test_o, test_p))
expect_error(foreccomb(train_o, train_p, NULL, test_p), NA)
expect_error(foreccomb(train_o, train_p, test_o, NULL))
})
test_that("Tests for valid training data set", {
set.seed(5)
obs <- rnorm(100)
preds <- matrix(rnorm(1000, 1), 100, 10)
train_o<-obs[1:80]
train_p<-preds[1:80,]
testdata<-foreccomb(train_o, train_p)
all.equal.character(names(testdata),
c("Actual_Train", "Forecasts_Train", "nmodels", "modelnames"),
check.attributes = FALSE)
expect_true(all.equal(length(testdata$Actual_Train), length(train_o)))
expect_true(all.equal(dim(testdata$Forecasts_Train), dim(train_p)))
})
test_that("Tests for valid training and test data sets", {
set.seed(5)
obs <- rnorm(100)
preds <- matrix(rnorm(1000, 1), 100, 10)
train_o<-obs[1:80]
train_p<-preds[1:80,]
test_o<-obs[81:100]
test_p<-preds[81:100,]
testdata<-foreccomb(train_o, train_p, test_o, test_p)
expect_true(all.equal.character(names(testdata),
c("Actual_Train", "Forecasts_Train", "Actual_Test", "Forecasts_Test", "nmodels", "modelnames"),
check.attributes = FALSE))
expect_true(all.equal(length(testdata$Actual_Train), length(train_o)))
expect_true(all.equal(length(testdata$Actual_Test), length(test_o)))
expect_true(all.equal(dim(testdata$Forecasts_Train), dim(train_p)))
expect_true(all.equal(dim(testdata$Forecasts_Test), dim(test_p)))
})
test_that("Fixed Bug - foreccomb is resetting the timestamp of the observation vector", {
train_o <- ts(1:10, start=5)
train_p <- ts(matrix(1:20, ncol = 2), start=5)
data <- foreccomb(train_o, train_p)
expect_true(all.equal(attributes(data$Actual_Train)$tsp, c(5, 14, 1)))
})
test_that("Fixed Bug - foreccomb is converting newpreds internally to a vector", {
train_o <- ts(1:10)
train_p <- ts(matrix(1:20, ncol = 2))
test_p <- ts(matrix(c(1, 2), ncol = 2))
data <- foreccomb(train_o, train_p, newpreds = test_p)
expect_true(all.equal(attributes(data$Forecasts_Test)$dim, c(1, 2)))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.