inst/tinytest/test_compute_historical_decompositions.R

data(us_fiscal_lsuw)

set.seed(1)
suppressMessages(
  specification_no1 <- specify_bsvar$new(us_fiscal_lsuw)
)
run_no1             <- estimate(specification_no1, 3, 1, show_progress = FALSE)
hd                  <- compute_historical_decompositions(run_no1)

set.seed(1)
suppressMessages(
  hd2               <- us_fiscal_lsuw |>
    specify_bsvar$new() |>
    estimate(S = 3, thin = 1, show_progress = FALSE) |>
    compute_historical_decompositions()
)



expect_equal(
  length(dim(hd)), length(dim(hd2)),
  info = "compute_historical_decompositions: same output dimensions for normal and pipe workflow."
)

expect_identical(
  hd[3,3,3,3], hd2[3,3,3,3],
  info = "compute_historical_decompositions: identical for normal and pipe workflow."
)

Try the bsvars package in your browser

Any scripts or data that you put into this service are public.

bsvars documentation built on Oct. 24, 2024, 5:11 p.m.