Skip to content

Commit

Permalink
fix glue trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
santikka committed Feb 2, 2024
1 parent e672f8d commit fbdfbc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# dynamite 1.4.9
* Added option to input custom model code for `dynamite` which can be used to
tweak some aspects of the model (no checks on the compatibility with the post processing are made).

* Added option to input a custom model code for `dynamite` which can be used to tweak some aspects of the model (no checks on the compatibility with the post processing are made).
* Changed the default optimization level for `cmdstanr` backend to `O0`, as the `O1` is not necessarily stable in all cases.
* Added a new argument `full_diagnostics` to the `print` method which can be used to control the computation of the ESS and Rhat values. By default, these are now computed only for the time- and group-invariant parameters (which are also printed).
* Print method now also warns about possible divergences, treedepth saturation and low E-BMFI.
* Added a new argument `full_diagnostics` to the `print()` method which can be used to control the computation of the ESS and Rhat values. By default, these are now computed only for the time- and group-invariant parameters (which are also printed).
* The `print()` method now also warns about possible divergences, treedepth saturation, and low E-BMFI.
* Fixed an error related to `predict()` code generation.

# dynamite 1.4.8

Expand Down
2 changes: 1 addition & 1 deletion R/predict_helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ generate_sim_call_univariate <- function(resp, family, type, eval_type,
" i = idx_data,",
" j = '{resp}_link',",
" value = xbeta[idx_out]",
")",
")"
),
""
),
Expand Down

0 comments on commit fbdfbc8

Please sign in to comment.