gitextract_s9w_3_or/ ├── .Rbuildignore ├── .claude/ │ ├── commands/ │ │ ├── bug-find.md │ │ ├── draft-pr-body.md │ │ ├── feature-execute.md │ │ ├── feature-plan.md │ │ ├── pr-checklist.md │ │ ├── reflect.md │ │ ├── review-changes.md │ │ └── spec-driven-dev.md │ └── settings.local.json ├── .github/ │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ └── workflows/ │ ├── R-CMD-check-rstan.yaml │ ├── R-CMD-check.yaml │ ├── memcheck.yaml │ ├── pkgdown.yaml │ └── readme.yaml ├── .gitignore ├── CLAUDE.md ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── RcppExports.R │ ├── add_MACor.R │ ├── add_base_dgam_lines.R │ ├── add_binomial.R │ ├── add_corcar.R │ ├── add_nmixture.R │ ├── add_poisson_lines.R │ ├── add_residuals.R │ ├── add_stan_data.R │ ├── add_trend_lines.R │ ├── add_tweedie_lines.R │ ├── all_neon_tick_data.R │ ├── as.data.frame.mvgam.R │ ├── backends.R │ ├── compute_edf.R │ ├── conditional_effects.R │ ├── cpp_funs.R │ ├── data_grids.R │ ├── dynamic.R │ ├── ensemble.R │ ├── evaluate_mvgams.R │ ├── families.R │ ├── fevd.mvgam.R │ ├── forecast.mvgam.R │ ├── formula.mvgam.R │ ├── get_linear_predictors.R │ ├── get_monitor_pars.R │ ├── get_mvgam_priors.R │ ├── globals.R │ ├── gp.R │ ├── gratia_methods.R │ ├── hindcast.mvgam.R │ ├── how_to_cite.R │ ├── index-mvgam.R │ ├── interpret_mvgam.R │ ├── irf.mvgam.R │ ├── jsdgam.R │ ├── lfo_cv.mvgam.R │ ├── logLik.mvgam.R │ ├── loo.mvgam.R │ ├── lv_correlations.R │ ├── marginaleffects.mvgam.R │ ├── mcmc_plot.mvgam.R │ ├── model.frame.mvgam.R │ ├── monotonic.R │ ├── mvgam-class.R │ ├── mvgam-package.R │ ├── mvgam.R │ ├── mvgam_diagnostics.R │ ├── mvgam_fevd-class.R │ ├── mvgam_forecast-class.R │ ├── mvgam_formulae.R │ ├── mvgam_irf-class.R │ ├── mvgam_residcor-class.R │ ├── mvgam_setup.R │ ├── mvgam_trend_types.R │ ├── noncent_trend.R │ ├── onAttach.R │ ├── ordinate.jsdgam.R │ ├── pairs.mvgam.R │ ├── piecewise_trends.R │ ├── plot.mvgam.R │ ├── plot_mvgam_factors.R │ ├── plot_mvgam_fc.R │ ├── plot_mvgam_pterms.R │ ├── plot_mvgam_randomeffects.R │ ├── plot_mvgam_resids.R │ ├── plot_mvgam_series.R │ ├── plot_mvgam_smooth.R │ ├── plot_mvgam_trend.R │ ├── plot_mvgam_uncertainty.R │ ├── portal_data.R │ ├── posterior_epred.mvgam.R │ ├── ppc.mvgam.R │ ├── predict.mvgam.R │ ├── print.mvgam.R │ ├── residual_cor.R │ ├── residuals.mvgam.R │ ├── sanitise_modelfile.R │ ├── score.mvgam_forecast.R │ ├── series_to_mvgam.R │ ├── shared_obs_params.R │ ├── sim_mvgam.R │ ├── stability.R │ ├── stan_utils.R │ ├── stationarise_VAR.R │ ├── summary.mvgam.R │ ├── sysdata.rda │ ├── tidier_methods.R │ ├── trends.R │ ├── update.mvgam.R │ ├── update_priors.R │ ├── utils-pipe.R │ └── validations.R ├── README.Rmd ├── README.md ├── build/ │ └── vignette.rds ├── build_vignettes_CRAN.R ├── cran-comments.md ├── data/ │ ├── all_neon_tick_data.rda │ └── portal_data.rda ├── doc/ │ ├── data_in_mvgam.R │ ├── data_in_mvgam.Rmd │ ├── data_in_mvgam.html │ ├── forecast_evaluation.R │ ├── forecast_evaluation.Rmd │ ├── forecast_evaluation.html │ ├── mvgam_overview.R │ ├── mvgam_overview.Rmd │ ├── mvgam_overview.html │ ├── nmixtures.R │ ├── nmixtures.Rmd │ ├── nmixtures.html │ ├── shared_states.R │ ├── shared_states.Rmd │ ├── shared_states.html │ ├── time_varying_effects.R │ ├── time_varying_effects.Rmd │ ├── time_varying_effects.html │ ├── trend_formulas.R │ ├── trend_formulas.Rmd │ └── trend_formulas.html ├── docs/ │ ├── 404.html │ ├── CODE_OF_CONDUCT.html │ ├── CONTRIBUTING.html │ ├── LICENSE-text.html │ ├── LICENSE.html │ ├── articles/ │ │ ├── data_in_mvgam.html │ │ ├── forecast_evaluation.html │ │ ├── index.html │ │ ├── mvgam_overview.html │ │ ├── nmixtures.html │ │ ├── shared_states.html │ │ ├── time_varying_effects.html │ │ └── trend_formulas.html │ ├── authors.html │ ├── deps/ │ │ ├── bootstrap-5.2.2/ │ │ │ └── font.css │ │ ├── bootstrap-5.3.1/ │ │ │ └── font.css │ │ ├── data-deps.txt │ │ └── jquery-3.6.0/ │ │ └── jquery-3.6.0.js │ ├── index.html │ ├── news/ │ │ └── index.html │ ├── pkgdown.js │ ├── pkgdown.yml │ ├── reference/ │ │ ├── GP.html │ │ ├── RW.html │ │ ├── ZMVN.html │ │ ├── add_residuals.mvgam.html │ │ ├── add_tweedie_lines.html │ │ ├── all_neon_tick_data.html │ │ ├── augment.mvgam.html │ │ ├── code.html │ │ ├── conditional_effects.mvgam.html │ │ ├── dynamic.html │ │ ├── ensemble.mvgam_forecast.html │ │ ├── evaluate_mvgams.html │ │ ├── fevd.mvgam.html │ │ ├── fitted.mvgam.html │ │ ├── forecast.mvgam.html │ │ ├── formula.mvgam.html │ │ ├── get_monitor_pars.html │ │ ├── get_mvgam_priors.html │ │ ├── gratia_mvgam_enhancements.html │ │ ├── hindcast.mvgam.html │ │ ├── how_to_cite.mvgam.html │ │ ├── index-mvgam.html │ │ ├── index.html │ │ ├── irf.mvgam.html │ │ ├── jsdgam.html │ │ ├── lfo_cv.mvgam.html │ │ ├── logLik.mvgam.html │ │ ├── loo.mvgam.html │ │ ├── lv_correlations.html │ │ ├── mcmc_plot.mvgam.html │ │ ├── model.frame.mvgam.html │ │ ├── monotonic.html │ │ ├── mvgam-class.html │ │ ├── mvgam-package.html │ │ ├── mvgam.html │ │ ├── mvgam_diagnostics.html │ │ ├── mvgam_draws.html │ │ ├── mvgam_families.html │ │ ├── mvgam_fevd-class.html │ │ ├── mvgam_forecast-class.html │ │ ├── mvgam_formulae.html │ │ ├── mvgam_irf-class.html │ │ ├── mvgam_marginaleffects.html │ │ ├── mvgam_trends.html │ │ ├── pairs.mvgam.html │ │ ├── pfilter_mvgam_fc.html │ │ ├── pfilter_mvgam_init.html │ │ ├── pfilter_mvgam_online.html │ │ ├── pfilter_mvgam_smooth.html │ │ ├── piecewise_trends.html │ │ ├── pipe.html │ │ ├── plot.mvgam.html │ │ ├── plot.mvgam_fevd.html │ │ ├── plot.mvgam_irf.html │ │ ├── plot.mvgam_lfo.html │ │ ├── plot_effects.mvgam.html │ │ ├── plot_mvgam_factors.html │ │ ├── plot_mvgam_forecasts.html │ │ ├── plot_mvgam_pterms.html │ │ ├── plot_mvgam_randomeffects.html │ │ ├── plot_mvgam_resids.html │ │ ├── plot_mvgam_series.html │ │ ├── plot_mvgam_smooth.html │ │ ├── plot_mvgam_trend.html │ │ ├── plot_mvgam_uncertainty.html │ │ ├── portal_data.html │ │ ├── posterior_epred.mvgam.html │ │ ├── posterior_linpred.mvgam.html │ │ ├── posterior_predict.mvgam.html │ │ ├── pp_check.mvgam.html │ │ ├── ppc.mvgam.html │ │ ├── predict.mvgam.html │ │ ├── print.mvgam.html │ │ ├── reexports.html │ │ ├── residual_cor.jsdgam.html │ │ ├── residuals.mvgam.html │ │ ├── score.mvgam_forecast.html │ │ ├── series_to_mvgam.html │ │ ├── sim_mvgam.html │ │ ├── stability.mvgam.html │ │ ├── summary.mvgam.html │ │ ├── ti.html │ │ └── update.mvgam.html │ ├── search.json │ └── sitemap.xml ├── index.Rmd ├── index.md ├── inst/ │ ├── CITATION │ └── doc/ │ ├── data_in_mvgam.R │ ├── data_in_mvgam.Rmd │ ├── data_in_mvgam.html │ ├── forecast_evaluation.R │ ├── forecast_evaluation.Rmd │ ├── forecast_evaluation.html │ ├── mvgam_overview.R │ ├── mvgam_overview.Rmd │ ├── mvgam_overview.html │ ├── nmixtures.R │ ├── nmixtures.Rmd │ ├── nmixtures.html │ ├── shared_states.R │ ├── shared_states.Rmd │ ├── shared_states.html │ ├── time_varying_effects.R │ ├── time_varying_effects.Rmd │ ├── time_varying_effects.html │ ├── trend_formulas.R │ ├── trend_formulas.Rmd │ └── trend_formulas.html ├── man/ │ ├── GP.Rd │ ├── RW.Rd │ ├── ZMVN.Rd │ ├── add_residuals.mvgam.Rd │ ├── all_neon_tick_data.Rd │ ├── augment.mvgam.Rd │ ├── code.Rd │ ├── conditional_effects.mvgam.Rd │ ├── dynamic.Rd │ ├── ensemble.mvgam_forecast.Rd │ ├── evaluate_mvgams.Rd │ ├── fevd.mvgam.Rd │ ├── fitted.mvgam.Rd │ ├── forecast.mvgam.Rd │ ├── formula.mvgam.Rd │ ├── get_mvgam_priors.Rd │ ├── gratia_mvgam_enhancements.Rd │ ├── hindcast.mvgam.Rd │ ├── how_to_cite.mvgam.Rd │ ├── index-mvgam.Rd │ ├── irf.mvgam.Rd │ ├── jsdgam.Rd │ ├── lfo_cv.mvgam.Rd │ ├── logLik.mvgam.Rd │ ├── loo.mvgam.Rd │ ├── lv_correlations.Rd │ ├── mcmc_plot.mvgam.Rd │ ├── model.frame.mvgam.Rd │ ├── monotonic.Rd │ ├── mvgam-class.Rd │ ├── mvgam-package.Rd │ ├── mvgam.Rd │ ├── mvgam_diagnostics.Rd │ ├── mvgam_draws.Rd │ ├── mvgam_families.Rd │ ├── mvgam_fevd-class.Rd │ ├── mvgam_forecast-class.Rd │ ├── mvgam_formulae.Rd │ ├── mvgam_irf-class.Rd │ ├── mvgam_marginaleffects.Rd │ ├── mvgam_residcor-class.Rd │ ├── mvgam_trends.Rd │ ├── mvgam_use_cases.Rd │ ├── ordinate.jsdgam.Rd │ ├── pairs.mvgam.Rd │ ├── piecewise_trends.Rd │ ├── pipe.Rd │ ├── plot.mvgam.Rd │ ├── plot.mvgam_fevd.Rd │ ├── plot.mvgam_irf.Rd │ ├── plot.mvgam_lfo.Rd │ ├── plot.mvgam_residcor.Rd │ ├── plot_mvgam_factors.Rd │ ├── plot_mvgam_forecasts.Rd │ ├── plot_mvgam_pterms.Rd │ ├── plot_mvgam_randomeffects.Rd │ ├── plot_mvgam_resids.Rd │ ├── plot_mvgam_series.Rd │ ├── plot_mvgam_smooth.Rd │ ├── plot_mvgam_trend.Rd │ ├── plot_mvgam_uncertainty.Rd │ ├── portal_data.Rd │ ├── posterior_epred.mvgam.Rd │ ├── posterior_linpred.mvgam.Rd │ ├── posterior_predict.mvgam.Rd │ ├── pp_check.mvgam.Rd │ ├── ppc.mvgam.Rd │ ├── predict.mvgam.Rd │ ├── print.mvgam.Rd │ ├── print.mvgam_summary.Rd │ ├── reexports.Rd │ ├── residual_cor.jsdgam.Rd │ ├── residuals.mvgam.Rd │ ├── score.mvgam_forecast.Rd │ ├── series_to_mvgam.Rd │ ├── sim_mvgam.Rd │ ├── stability.mvgam.Rd │ ├── summary.mvgam.Rd │ ├── summary.mvgam_fevd.Rd │ ├── summary.mvgam_forecast.Rd │ ├── summary.mvgam_irf.Rd │ ├── tidy.mvgam.Rd │ └── update.mvgam.Rd ├── memcheck.R ├── misc/ │ ├── BeamOptions.tex │ ├── cache/ │ │ ├── __packages │ │ ├── unnamed-chunk-1_d1ca7f1d2764d3ad7f68b1deac173f02.RData │ │ ├── unnamed-chunk-1_d1ca7f1d2764d3ad7f68b1deac173f02.rdb │ │ ├── unnamed-chunk-1_d1ca7f1d2764d3ad7f68b1deac173f02.rdx │ │ ├── unnamed-chunk-2_ad6e810bc91f96416ef0c5c84cba99cc.RData │ │ ├── unnamed-chunk-2_ad6e810bc91f96416ef0c5c84cba99cc.rdb │ │ └── unnamed-chunk-2_ad6e810bc91f96416ef0c5c84cba99cc.rdx │ ├── mvgam_cheatsheet-concordance.tex │ ├── mvgam_cheatsheet.Rnw │ └── mvgam_cheatsheet.tex ├── pkgdown/ │ ├── _pkgdown.yml │ ├── extra.css │ └── extra.scss ├── src/ │ ├── .gitignore │ ├── Makevars │ ├── Makevars.win │ ├── RcppExports.cpp │ ├── RcppExports.o │ ├── trend_funs.cpp │ └── trend_funs.o ├── tasks/ │ └── fixtures/ │ ├── debug_brms_intercept.rds │ ├── fit1.rds │ ├── fit10.rds │ ├── fit11.rds │ ├── fit12.rds │ ├── fit13.rds │ ├── fit2.rds │ ├── fit3.rds │ ├── fit4.rds │ ├── fit5.rds │ ├── fit6.rds │ ├── fit7.rds │ ├── fit8.rds │ ├── fit9.rds │ ├── val_brms_ar1_cor_re.rds │ ├── val_brms_ar1_fx.rds │ ├── val_brms_ar1_gp.rds │ ├── val_brms_ar1_gp2_by.rds │ ├── val_brms_ar1_gp2d.rds │ ├── val_brms_ar1_int.rds │ ├── val_brms_ar1_mo.rds │ ├── val_brms_ar1_re.rds │ ├── val_brms_ar1_re_smooth.rds │ ├── val_brms_ar1_t2_noint.rds │ ├── val_brms_beta_ar1.rds │ ├── val_brms_binom_ar1.rds │ ├── val_brms_cumulative_fx.rds │ ├── val_brms_hurdle_negbinomial_ar1.rds │ ├── val_brms_hurdle_poisson_ar1.rds │ ├── val_brms_mv_gauss.rds │ ├── val_brms_zero_inflated_poisson_ar1.rds │ ├── val_mvgam_ar1_cor_re.rds │ ├── val_mvgam_ar1_fx.rds │ ├── val_mvgam_ar1_fx_trend.rds │ ├── val_mvgam_ar1_gp.rds │ ├── val_mvgam_ar1_gp2_by.rds │ ├── val_mvgam_ar1_gp2_by_trend.rds │ ├── val_mvgam_ar1_gp2d.rds │ ├── val_mvgam_ar1_gp2d_trend.rds │ ├── val_mvgam_ar1_gp_trend.rds │ ├── val_mvgam_ar1_int.rds │ ├── val_mvgam_ar1_mo.rds │ ├── val_mvgam_ar1_mo_trend.rds │ ├── val_mvgam_ar1_re.rds │ ├── val_mvgam_ar1_re_smooth.rds │ ├── val_mvgam_ar1_re_smooth_trend.rds │ ├── val_mvgam_ar1_re_trend.rds │ ├── val_mvgam_ar1_t2_noint.rds │ ├── val_mvgam_beta_ar1.rds │ ├── val_mvgam_binom_ar1.rds │ ├── val_mvgam_cumulative_fx.rds │ ├── val_mvgam_hurdle_negbinomial_ar1.rds │ ├── val_mvgam_hurdle_poisson_ar1.rds │ ├── val_mvgam_mv_gauss.rds │ ├── val_mvgam_zero_inflated_poisson_ar1.rds │ ├── validation_brms_ar1.rds │ ├── validation_brms_re.rds │ ├── validation_brms_simple.rds │ ├── validation_mvgam_ar1.rds │ └── validation_mvgam_simple.rds ├── tests/ │ ├── local/ │ │ ├── setup_tests_local.R │ │ └── tests-models1.R │ ├── mvgam_examples.R │ ├── testthat/ │ │ ├── _snaps/ │ │ │ └── tidier_methods.md │ │ ├── setup.R │ │ ├── test-RW.R │ │ ├── test-backends.R │ │ ├── test-binomial.R │ │ ├── test-dynamic.R │ │ ├── test-example_processing.R │ │ ├── test-families.R │ │ ├── test-gp.R │ │ ├── test-jsdgam.R │ │ ├── test-marginaleffects.R │ │ ├── test-monotonic.R │ │ ├── test-mvgam-methods.R │ │ ├── test-mvgam.R │ │ ├── test-mvgam_priors.R │ │ ├── test-nmixture.R │ │ ├── test-offset.R │ │ ├── test-piecewise.R │ │ ├── test-sim_mvgam.R │ │ ├── test-summary-structure.R │ │ ├── test-tidier_methods.R │ │ └── test-update.R │ └── testthat.R └── vignettes/ ├── data_in_mvgam.Rmd ├── forecast_evaluation.Rmd ├── mvgam_overview.Rmd ├── nmixtures.Rmd ├── shared_states.Rmd ├── time_varying_effects.Rmd └── trend_formulas.Rmd