# timeseriesdatasets package, a collection of time series data sets for R. # Copyright (C) 2024 Renzo Caceres Rossi # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # data set wineind_ts library(testthat) # library(timeSeriesDataSets) activate the timeSeriesDataSets package # Test that the object 'wineind_ts' has the correct class test_that("wineind_ts has the correct class of object", { # Check if 'wineind_ts' is of class 'ts' expect_equal(class(wineind_ts), "ts") }) # Test that 'wineind_ts' has the correct number of observations test_that("wineind_ts has the correct number of observations", { # Verify that the length of 'wineind_ts' matches the expected number of observations expect_equal(length(wineind_ts), 176) }) test_that("wineind_ts has the correct frequency", { # Check if the frequency of 'wineind_ts' is 12 (monthly data) expect_equal(frequency(wineind_ts), 12) }) test_that("wineind_ts has the correct start and end", { # Verify that 'wineind_ts' starts in January 1980 expect_equal(start(wineind_ts), c(1980,1)) # Verify that 'wineind_ts' ends in August 1994 expect_equal(end(wineind_ts), c(1994,8)) }) test_that("wineind_ts does not contain missing values", { # Check for NA values in the dataset expect_false(any(is.na(wineind_ts))) })