├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── 00_global_variables.R ├── dials-adaptive_splines_params.R ├── dials-exp_smoothing_params.R ├── dials-garch_params.R ├── dials-naive_params.R ├── dials-sarima_params.R ├── dials-ssm_params.R ├── dials-svm_params.R ├── parsnip-adaptive_spline.R ├── parsnip-adaptive_spline_data.R ├── parsnip-bayesian_structural_reg.R ├── parsnip-bayesian_structural_reg_data.R ├── parsnip-exp_smoothing_reg.R ├── parsnip-exp_smoothing_reg_data.R ├── parsnip-garch_reg.R ├── parsnip-garch_reg_data.R ├── parsnip-gen_additive_mod_data.R ├── parsnip-gen_additive_reg.R ├── parsnip-naive_reg.R ├── parsnip-naive_reg_data.R ├── parsnip-sarima_reg_data.R ├── parsnip-ssm_reg.R ├── parsnip-ssm_reg_data.R ├── parsnip-svm_reg.R ├── parsnip-svm_reg_data.R ├── parsnip_sarima_reg.R ├── utils-pipe.R ├── utils-tidy-eval.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── bayesmodels.Rproj ├── codecov.yml ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── articles │ ├── getting-started.html │ ├── getting-started_files │ │ ├── figure-html │ │ │ ├── unnamed-chunk-10-1.png │ │ │ ├── unnamed-chunk-11-1.png │ │ │ ├── unnamed-chunk-18-1.png │ │ │ ├── unnamed-chunk-19-1.png │ │ │ ├── unnamed-chunk-20-1.png │ │ │ ├── unnamed-chunk-21-1.png │ │ │ ├── unnamed-chunk-22-1.png │ │ │ ├── unnamed-chunk-6-1.png │ │ │ └── unnamed-chunk-7-1.png │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── index.html │ ├── logo-bayesmodels.png │ ├── logo-garchmodels.png │ ├── modeltime-integration.html │ ├── modeltime-integration_files │ │ ├── figure-html │ │ │ ├── unnamed-chunk-10-1.png │ │ │ ├── unnamed-chunk-12-1.png │ │ │ ├── unnamed-chunk-15-1.png │ │ │ ├── unnamed-chunk-17-1.png │ │ │ └── unnamed-chunk-6-1.png │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── modeltime_ecosystem.jpg │ ├── modeltime_workflow.jpg │ ├── univariate_multivariate.png │ └── univariate_multivariate_garchmodels.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Rplot001.png │ ├── Sarima_stan_fit_impl.html │ ├── Sarima_stan_predict_impl.html │ ├── adaptive_spline.html │ ├── adaptive_spline_stan_fit_impl.html │ ├── adaptive_spline_stan_predict_impl.html │ ├── adaptive_splines_params.html │ ├── additive_state_space.html │ ├── bayesian_structural_reg.html │ ├── bayesian_structural_stan_fit_impl.html │ ├── bayesian_structural_stan_predict_impl.html │ ├── cgarch_rmgarch_multi_fit_impl.html │ ├── dcc_rmgarch_multi_fit_impl.html │ ├── dcc_rmgarch_multi_predict_impl.html │ ├── delete_attr.html │ ├── exp_smoothing_stan_fit_impl.html │ ├── exp_smoothing_stan_predict_impl.html │ ├── exponential_smoothing.html │ ├── exponential_smoothing_params.html │ ├── figures │ └── README-pressure-1.png │ ├── garch_fit_impl.html │ ├── garch_multivariate_reg.html │ ├── garch_params.html │ ├── garch_predict_impl.html │ ├── garch_reg.html │ ├── garch_stan_fit_impl.html │ ├── garch_stan_predict_impl.html │ ├── gen_additive_reg.html │ ├── gen_additive_stan_fit_impl.html │ ├── gen_additive_stan_predict_impl.html │ ├── gogarch_rmgarch_multi_fit_impl.html │ ├── gogarch_rmgarch_multi_predict_impl.html │ ├── index.html │ ├── naive_params.html │ ├── new_modelgarch_bridge.html │ ├── pipe.html │ ├── rIBM.html │ ├── rX_longer.html │ ├── random_walk_reg.html │ ├── random_walk_stan_fit_impl.html │ ├── random_walk_stan_predict_impl.html │ ├── rugarch_fit_impl.html │ ├── rugarch_multi_fit_impl.html │ ├── rugarch_multi_predict_impl.html │ ├── rugarch_predict_impl.html │ ├── sarima_params.html │ ├── sarima_reg.html │ ├── ssm_params.html │ ├── ssm_stan_fit_impl.html │ ├── ssm_stan_predict_impl.html │ ├── svm_reg.html │ ├── svm_stan_fit_impl.html │ ├── svm_stan_predict_impl.html │ └── tidyeval.html ├── man ├── Sarima_stan_fit_impl.Rd ├── Sarima_stan_predict_impl.Rd ├── adaptive_spline.Rd ├── adaptive_spline_stan_fit_impl.Rd ├── adaptive_spline_stan_predict_impl.Rd ├── adaptive_splines_params.Rd ├── additive_state_space.Rd ├── bayesian_structural_reg.Rd ├── bayesian_structural_stan_fit_impl.Rd ├── bayesian_structural_stan_predict_impl.Rd ├── exp_smoothing_stan_fit_impl.Rd ├── exp_smoothing_stan_predict_impl.Rd ├── exponential_smoothing.Rd ├── exponential_smoothing_params.Rd ├── figures │ └── README-pressure-1.png ├── garch_params.Rd ├── garch_reg.Rd ├── garch_stan_fit_impl.Rd ├── garch_stan_predict_impl.Rd ├── gen_additive_reg.Rd ├── gen_additive_stan_fit_impl.Rd ├── gen_additive_stan_predict_impl.Rd ├── naive_params.Rd ├── pipe.Rd ├── random_walk_reg.Rd ├── random_walk_stan_fit_impl.Rd ├── random_walk_stan_predict_impl.Rd ├── sarima_params.Rd ├── sarima_reg.Rd ├── ssm_params.Rd ├── ssm_stan_fit_impl.Rd ├── ssm_stan_predict_impl.Rd ├── svm_reg.Rd ├── svm_stan_fit_impl.Rd ├── svm_stan_predict_impl.Rd └── tidyeval.Rd ├── tests ├── testthat.R └── testthat │ ├── test-algo-garch_reg.R │ ├── test-algo-random_walk_reg.R │ ├── test-algo-sarima_reg.R │ ├── test-algo-ssm_reg.R │ └── test-algo-svm_reg.R └── vignettes ├── .gitignore ├── logo-bayesmodels.png ├── modeltime-integration.Rmd ├── modeltime_ecosystem.jpg ├── modeltime_workflow.jpg └── portada.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Alberto González Almuiña 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/00_global_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/00_global_variables.R -------------------------------------------------------------------------------- /R/dials-adaptive_splines_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-adaptive_splines_params.R -------------------------------------------------------------------------------- /R/dials-exp_smoothing_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-exp_smoothing_params.R -------------------------------------------------------------------------------- /R/dials-garch_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-garch_params.R -------------------------------------------------------------------------------- /R/dials-naive_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-naive_params.R -------------------------------------------------------------------------------- /R/dials-sarima_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-sarima_params.R -------------------------------------------------------------------------------- /R/dials-ssm_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-ssm_params.R -------------------------------------------------------------------------------- /R/dials-svm_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/dials-svm_params.R -------------------------------------------------------------------------------- /R/parsnip-adaptive_spline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-adaptive_spline.R -------------------------------------------------------------------------------- /R/parsnip-adaptive_spline_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-adaptive_spline_data.R -------------------------------------------------------------------------------- /R/parsnip-bayesian_structural_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-bayesian_structural_reg.R -------------------------------------------------------------------------------- /R/parsnip-bayesian_structural_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-bayesian_structural_reg_data.R -------------------------------------------------------------------------------- /R/parsnip-exp_smoothing_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-exp_smoothing_reg.R -------------------------------------------------------------------------------- /R/parsnip-exp_smoothing_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-exp_smoothing_reg_data.R -------------------------------------------------------------------------------- /R/parsnip-garch_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-garch_reg.R -------------------------------------------------------------------------------- /R/parsnip-garch_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-garch_reg_data.R -------------------------------------------------------------------------------- /R/parsnip-gen_additive_mod_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-gen_additive_mod_data.R -------------------------------------------------------------------------------- /R/parsnip-gen_additive_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-gen_additive_reg.R -------------------------------------------------------------------------------- /R/parsnip-naive_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-naive_reg.R -------------------------------------------------------------------------------- /R/parsnip-naive_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-naive_reg_data.R -------------------------------------------------------------------------------- /R/parsnip-sarima_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-sarima_reg_data.R -------------------------------------------------------------------------------- /R/parsnip-ssm_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-ssm_reg.R -------------------------------------------------------------------------------- /R/parsnip-ssm_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-ssm_reg_data.R -------------------------------------------------------------------------------- /R/parsnip-svm_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-svm_reg.R -------------------------------------------------------------------------------- /R/parsnip-svm_reg_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip-svm_reg_data.R -------------------------------------------------------------------------------- /R/parsnip_sarima_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/parsnip_sarima_reg.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils-tidy-eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/utils-tidy-eval.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bayesmodels.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/bayesmodels.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/articles/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started.html -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/getting-started_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/getting-started_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/logo-bayesmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/logo-bayesmodels.png -------------------------------------------------------------------------------- /docs/articles/logo-garchmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/logo-garchmodels.png -------------------------------------------------------------------------------- /docs/articles/modeltime-integration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration.html -------------------------------------------------------------------------------- /docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/modeltime-integration_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime-integration_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/modeltime_ecosystem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime_ecosystem.jpg -------------------------------------------------------------------------------- /docs/articles/modeltime_workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/modeltime_workflow.jpg -------------------------------------------------------------------------------- /docs/articles/univariate_multivariate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/univariate_multivariate.png -------------------------------------------------------------------------------- /docs/articles/univariate_multivariate_garchmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/articles/univariate_multivariate_garchmodels.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Sarima_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/Sarima_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/Sarima_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/Sarima_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/adaptive_spline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/adaptive_spline.html -------------------------------------------------------------------------------- /docs/reference/adaptive_spline_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/adaptive_spline_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/adaptive_spline_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/adaptive_spline_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/adaptive_splines_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/adaptive_splines_params.html -------------------------------------------------------------------------------- /docs/reference/additive_state_space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/additive_state_space.html -------------------------------------------------------------------------------- /docs/reference/bayesian_structural_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/bayesian_structural_reg.html -------------------------------------------------------------------------------- /docs/reference/bayesian_structural_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/bayesian_structural_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/bayesian_structural_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/bayesian_structural_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/cgarch_rmgarch_multi_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/cgarch_rmgarch_multi_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/dcc_rmgarch_multi_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/dcc_rmgarch_multi_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/dcc_rmgarch_multi_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/dcc_rmgarch_multi_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/delete_attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/delete_attr.html -------------------------------------------------------------------------------- /docs/reference/exp_smoothing_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/exp_smoothing_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/exp_smoothing_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/exp_smoothing_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/exponential_smoothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/exponential_smoothing.html -------------------------------------------------------------------------------- /docs/reference/exponential_smoothing_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/exponential_smoothing_params.html -------------------------------------------------------------------------------- /docs/reference/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/figures/README-pressure-1.png -------------------------------------------------------------------------------- /docs/reference/garch_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/garch_multivariate_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_multivariate_reg.html -------------------------------------------------------------------------------- /docs/reference/garch_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_params.html -------------------------------------------------------------------------------- /docs/reference/garch_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/garch_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_reg.html -------------------------------------------------------------------------------- /docs/reference/garch_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/garch_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/garch_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/gen_additive_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/gen_additive_reg.html -------------------------------------------------------------------------------- /docs/reference/gen_additive_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/gen_additive_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/gen_additive_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/gen_additive_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/gogarch_rmgarch_multi_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/gogarch_rmgarch_multi_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/gogarch_rmgarch_multi_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/gogarch_rmgarch_multi_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/naive_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/naive_params.html -------------------------------------------------------------------------------- /docs/reference/new_modelgarch_bridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/new_modelgarch_bridge.html -------------------------------------------------------------------------------- /docs/reference/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/pipe.html -------------------------------------------------------------------------------- /docs/reference/rIBM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/rIBM.html -------------------------------------------------------------------------------- /docs/reference/rX_longer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/rX_longer.html -------------------------------------------------------------------------------- /docs/reference/random_walk_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/random_walk_reg.html -------------------------------------------------------------------------------- /docs/reference/random_walk_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/random_walk_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/random_walk_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/random_walk_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/rugarch_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/rugarch_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/rugarch_multi_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/rugarch_multi_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/rugarch_multi_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/rugarch_multi_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/rugarch_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/rugarch_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/sarima_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/sarima_params.html -------------------------------------------------------------------------------- /docs/reference/sarima_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/sarima_reg.html -------------------------------------------------------------------------------- /docs/reference/ssm_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/ssm_params.html -------------------------------------------------------------------------------- /docs/reference/ssm_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/ssm_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/ssm_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/ssm_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/svm_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/svm_reg.html -------------------------------------------------------------------------------- /docs/reference/svm_stan_fit_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/svm_stan_fit_impl.html -------------------------------------------------------------------------------- /docs/reference/svm_stan_predict_impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/svm_stan_predict_impl.html -------------------------------------------------------------------------------- /docs/reference/tidyeval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/docs/reference/tidyeval.html -------------------------------------------------------------------------------- /man/Sarima_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/Sarima_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/Sarima_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/Sarima_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/adaptive_spline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/adaptive_spline.Rd -------------------------------------------------------------------------------- /man/adaptive_spline_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/adaptive_spline_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/adaptive_spline_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/adaptive_spline_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/adaptive_splines_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/adaptive_splines_params.Rd -------------------------------------------------------------------------------- /man/additive_state_space.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/additive_state_space.Rd -------------------------------------------------------------------------------- /man/bayesian_structural_reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/bayesian_structural_reg.Rd -------------------------------------------------------------------------------- /man/bayesian_structural_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/bayesian_structural_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/bayesian_structural_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/bayesian_structural_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/exp_smoothing_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/exp_smoothing_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/exp_smoothing_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/exp_smoothing_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/exponential_smoothing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/exponential_smoothing.Rd -------------------------------------------------------------------------------- /man/exponential_smoothing_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/exponential_smoothing_params.Rd -------------------------------------------------------------------------------- /man/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/figures/README-pressure-1.png -------------------------------------------------------------------------------- /man/garch_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/garch_params.Rd -------------------------------------------------------------------------------- /man/garch_reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/garch_reg.Rd -------------------------------------------------------------------------------- /man/garch_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/garch_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/garch_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/garch_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/gen_additive_reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/gen_additive_reg.Rd -------------------------------------------------------------------------------- /man/gen_additive_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/gen_additive_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/gen_additive_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/gen_additive_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/naive_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/naive_params.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/random_walk_reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/random_walk_reg.Rd -------------------------------------------------------------------------------- /man/random_walk_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/random_walk_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/random_walk_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/random_walk_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/sarima_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/sarima_params.Rd -------------------------------------------------------------------------------- /man/sarima_reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/sarima_reg.Rd -------------------------------------------------------------------------------- /man/ssm_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/ssm_params.Rd -------------------------------------------------------------------------------- /man/ssm_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/ssm_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/ssm_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/ssm_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/svm_reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/svm_reg.Rd -------------------------------------------------------------------------------- /man/svm_stan_fit_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/svm_stan_fit_impl.Rd -------------------------------------------------------------------------------- /man/svm_stan_predict_impl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/svm_stan_predict_impl.Rd -------------------------------------------------------------------------------- /man/tidyeval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/man/tidyeval.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-algo-garch_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/tests/testthat/test-algo-garch_reg.R -------------------------------------------------------------------------------- /tests/testthat/test-algo-random_walk_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/tests/testthat/test-algo-random_walk_reg.R -------------------------------------------------------------------------------- /tests/testthat/test-algo-sarima_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/tests/testthat/test-algo-sarima_reg.R -------------------------------------------------------------------------------- /tests/testthat/test-algo-ssm_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/tests/testthat/test-algo-ssm_reg.R -------------------------------------------------------------------------------- /tests/testthat/test-algo-svm_reg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/tests/testthat/test-algo-svm_reg.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/logo-bayesmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/vignettes/logo-bayesmodels.png -------------------------------------------------------------------------------- /vignettes/modeltime-integration.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/vignettes/modeltime-integration.Rmd -------------------------------------------------------------------------------- /vignettes/modeltime_ecosystem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/vignettes/modeltime_ecosystem.jpg -------------------------------------------------------------------------------- /vignettes/modeltime_workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/vignettes/modeltime_workflow.jpg -------------------------------------------------------------------------------- /vignettes/portada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoAlmuinha/bayesmodels/HEAD/vignettes/portada.png --------------------------------------------------------------------------------