inst/tinytest/test_compute_fitted_values.R

data(optimism)

set.seed(1)
suppressMessages(
  specification_no1 <- specify_bsvarSIGN$new(optimism)
)
run_no1             <- estimate(specification_no1, 3, 1, show_progress = FALSE)
fv                  <- compute_fitted_values(run_no1)

set.seed(1)
suppressMessages(
  fv2               <- optimism |>
    specify_bsvarSIGN$new() |>
    estimate(S = 3, thin = 1, show_progress = FALSE) |>
    compute_fitted_values()
)



expect_true(
  all(dim(fv) == dim(fv2)),
  info = "compute_fitted_values: same output dimentions for normal and pipe workflow."
)

expect_identical(
  fv[1,1,1], fv2[1,1,1],
  info = "compute_fitted_values: identical for normal and pipe workflow."
)

Try the bsvarSIGNs package in your browser

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

bsvarSIGNs documentation built on April 4, 2025, 12:30 a.m.