Skip to content

Commit

Permalink
Reset
Browse files Browse the repository at this point in the history
  • Loading branch information
franzmohr committed Aug 31, 2023
1 parent 2abdd73 commit 40f25c7
Show file tree
Hide file tree
Showing 24 changed files with 4,656 additions and 1 deletion.
12 changes: 11 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Date: 2023-06-30
Authors@R: person("Franz X.", "Mohr", email = "[email protected]", role = c("aut","cre"), comment = c(ORCiD = "0009-0003-8890-7781"))
Description: Assists in the set-up and inference of Bayesian global vector autoregressive (BGVAR) and error correction (BGVEC) models.
License: GPL (>= 2)
Depends: R (>= 3.3.0), bvartools (>= 0.2.1)
Depends: R (>= 3.3.0), bvartools (>= 0.2.3)
Imports:
coda,
grDevices,
Expand All @@ -24,8 +24,10 @@ Suggests: knitr, rmarkdown
Collate:
'RcppExports.R'
'add_priors.gvarsubmodels.R'
'add_priors.gvecsubmodels.R'
'bgvars-package.R'
'bvarxpost.R'
'bvecxpost.R'
'combine_submodels.R'
'country_fill_helper.R'
'create_models.R'
Expand All @@ -37,6 +39,7 @@ Collate:
'data.R'
'diff_variables.R'
'draw_posterior.gvarsubmodels.R'
'draw_posterior.gvecsubmodels.R'
'gen_varx.R'
'gen_vecx.R'
'get_regressor_names.R'
Expand All @@ -50,16 +53,23 @@ Collate:
'plot.bgvarfevd.R'
'plot.bgvarirf.R'
'plot.bgvarprd.R'
'plot.bgvecest.R'
'plot.ctryvarest.R'
'plot.ctryvecest.R'
'plot.teststats.bgvarest.R'
'predict.bgvar.R'
'summary.bgvarest.R'
'print.summary.bgvarest.R'
'summary.bgvecest.R'
'print.summary.bgvecest.R'
'summary.ctryvarest.R'
'print.summary.ctryvarest.R'
'summary.ctryvecest.R'
'print.summary.ctryvecest.R'
'select_submodels.R'
'submodel_test_statistics.R'
'thin.bgvar.R'
'thin.bgvarest.R'
'thin.bgvecest.R'
'tvpribbon.R'
'zzz.R'
10 changes: 10 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,24 +1,34 @@
# Generated by roxygen2: do not edit by hand

S3method(add_priors,gvarsubmodels)
S3method(add_priors,gvecsubmodels)
S3method(draw_posterior,gvarsubmodels)
S3method(draw_posterior,gvecsubmodels)
S3method(irf,bgvarest)
S3method(irf,ctryvarest)
S3method(plot,bgvarest)
S3method(plot,bgvarestirf)
S3method(plot,bgvarfevd)
S3method(plot,bgvarirf)
S3method(plot,bgvarprd)
S3method(plot,bgvecest)
S3method(plot,ctryvarest)
S3method(plot,ctryvecest)
S3method(plot,teststats.bgvarest)
S3method(predict,bgvar)
S3method(print,summary.bgvarest)
S3method(print,summary.bgvecest)
S3method(print,summary.ctryvarest)
S3method(print,summary.ctryvecest)
S3method(summary,bgvarest)
S3method(summary,bgvecest)
S3method(summary,ctryvarest)
S3method(summary,ctryvecest)
S3method(thin,bgvar)
S3method(thin,bgvarest)
S3method(thin,bgvecest)
export(bvarxpost)
export(bvecxpost)
export(combine_submodels)
export(create_models)
export(create_regions)
Expand Down
8 changes: 8 additions & 0 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
.Call(`_bgvars_bgvartvpalg`, object)
}

.bgvecalg <- function(object) {
.Call(`_bgvars_bgvecalg`, object)
}

.bgvectvpalg <- function(object) {
.Call(`_bgvars_bgvectvpalg`, object)
}

.draw_forecast <- function(i, k, a0, a, b_, c_, sigma, pred) {
.Call(`_bgvars_draw_forecast`, i, k, a0, a, b_, c_, sigma, pred)
}
Expand Down
867 changes: 867 additions & 0 deletions R/add_priors.gvecsubmodels.R

Large diffs are not rendered by default.

Loading

0 comments on commit 40f25c7

Please sign in to comment.