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
#' @param mcmc_seed Integer, used for Markov-chain Monte Carlo reproducibility. By default, a random number is sampled from 1 to 999999.
563
576
#' @param max_sampling_iterations Integer, limits the maximum number of iterations in case a large dataset is used, to limit computation time.
564
577
#' @param enable_loo Logical, whether to enable model comparison using the R package LOO. This is useful for comparing fits between models, similar to ANOVA.
578
+
#' @param sig_figs Number of significant figures to use for Stan model output. Default is 9.
565
579
#' @param approximate_posterior_inference DEPRECATED, use the `variational_inference` argument.
566
-
#' @param variational_inference Logical, whether to use variational Bayes for posterior inference. It is faster and convenient. Setting this argument to `FALSE` runs full Bayesian (Hamiltonian Monte Carlo) inference, which is slower but the gold standard.
580
+
#' @param variational_inference DEPRECATED Logical, whether to use variational Bayes for posterior inference. It is faster and convenient. Setting this argument to `FALSE` runs full Bayesian (Hamiltonian Monte Carlo) inference, which is slower but the gold standard.
567
581
#' @param ... Additional arguments passed to the `cmdstanr::sample` function.
568
582
#'
569
583
#' @return A tibble (`tbl`), with the following columns:
#' @param number_of_draws An integer. How may copies of the data you want to draw from the model joint posterior distribution.
1658
1681
#' @param mcmc_seed An integer. Used for Markov-chain Monte Carlo reproducibility. By default a random number is sampled from 1 to 999999. This itself can be controlled by set.seed()#' @param cores Integer, the number of cores to be used for parallel calculations.
1659
1682
#' @param cores Integer, the number of cores to be used for parallel calculations.
1683
+
#' @param sig_figs Number of significant figures to use for Stan model output. Default is 9.
1660
1684
#'
1661
1685
#' @return A tibble (`tbl`) with the following columns:
0 commit comments