-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
692f293
commit b7a7d34
Showing
3 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
data(ilo_cubic_panel) | ||
|
||
set.seed(1) | ||
specification_no1 <- specify_bvarPANEL$new(ilo_cubic_panel) | ||
run_no1 <- estimate(specification_no1, 3, 1, show_progress = FALSE) | ||
|
||
set.seed(1) | ||
specification_no2 <- specify_bvarPANEL$new(ilo_cubic_panel) | ||
run_no2 <- estimate(specification_no2, 3, 1, show_progress = FALSE) | ||
|
||
set.seed(1) | ||
run_no3 <- ilo_cubic_panel |> | ||
specify_bvarPANEL$new() |> | ||
estimate(S = 3, thin = 1, show_progress = FALSE) | ||
|
||
expect_identical( | ||
run_no1$last_draw$starting_values$A[1,1], | ||
run_no2$last_draw$starting_values$A[1,1], | ||
info = "estimate_bvarPANEL: the last_draw(s) of two runs to be identical." | ||
) | ||
|
||
expect_identical( | ||
run_no1$posterior$A[1,1,1], | ||
run_no2$posterior$A[1,1,1], | ||
info = "estimate_bvarPANEL: the first draws of two runs to be identical." | ||
) | ||
|
||
expect_identical( | ||
run_no1$last_draw$starting_values$A[1,1], | ||
run_no3$last_draw$starting_values$A[1,1], | ||
info = "estimate_bvarPANEL: the last_draw(s) of a normal and pipe run to be identical." | ||
) | ||
|
||
# a test of a good setting of S and thin | ||
expect_error( | ||
estimate(specification_no1, 3, 2, show_progress = FALSE), | ||
info = "Argument S is not a positive integer multiplication of argument thin." | ||
) | ||
|
||
expect_error( | ||
estimate(specification_no1, 2, 3, show_progress = FALSE), | ||
info = "Argument S is not a positive integer multiplication of argument thin." | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
if ( requireNamespace("tinytest", quietly=TRUE) ){ | ||
# To skip running the tests on CRAN make them run only on the developer version | ||
home <- length(unclass(packageVersion("bsvars"))[[1]]) == 4 | ||
tinytest::test_package("bvarPANELs") | ||
} | ||
|