You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Fit Bayesian Dynamic Generalized Additive Models to sets of time series. Users can build dynamic nonlinear State-Space models that can incorporate semiparametric effects in observation and process components, using a wide range of observation families. Estimation is performed using Markov Chain Monte Carlo with Hamiltonian Monte Carlo in the software 'Stan'. References: Clark & Wells (2022) <doi:10.1111/2041-210X.13974>.
Copy file name to clipboardexpand all lines: NEWS.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# mvgam 1.1.2
2
2
* Added options for silencing some of the 'Stan' compiler and modeling messages using the `silent` argument in `mvgam()`
3
+
* Moved a number of packages from 'Depends' to 'Imports' for simpler package loading and fewer potential masking conflicts
3
4
* Improved efficiency of the model initialisation by tweaking parameters of the underlying 'mgcv' `gam` object's convergence criteria, resulting in much faster model setups
4
5
* Added an option to use `trend_model = 'None'` in State-Space models, increasing flexibility by ensuring the process error evolves as white noise (#51)
5
6
* Added an option to use the non-centred parameterisation for some autoregressive trend models,
Copy file name to clipboardexpand all lines: README.Rmd
+1-1
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ plot_mvgam_smooth(lynx_mvgam, series = 1,
182
182
183
183
As for many types of regression models, it is often more useful to plot model effects on the outcome scale. `mvgam` has support for the wonderful `marginaleffects` package, allowing a wide variety of posterior contrasts, averages, conditional and marginal predictions to be calculated and plotted. Below is the conditional effect of season plotted on the outcome scale, for example:
184
184
```{r, fig.alt = "Using marginaleffects and mvgam to plot GAM smooth functions in R"}
0 commit comments