From e115f9233511a6c9b66a2d43aada6bd7759355a7 Mon Sep 17 00:00:00 2001 From: ntorresd Date: Fri, 10 May 2024 14:14:01 -0500 Subject: [PATCH] feat: add age-varying normal model `av_normal` - Update `R/stanmodels.R` --- R/stanmodels.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/stanmodels.R b/R/stanmodels.R index 4d385063..e3529b84 100644 --- a/R/stanmodels.R +++ b/R/stanmodels.R @@ -1,9 +1,10 @@ # Generated by rstantools. Do not edit by hand. # names of stan models -stanmodels <- c("constant", "tv_normal", "tv_normal_log") +stanmodels <- c("av_normal", "constant", "tv_normal", "tv_normal_log") # load each stan module +Rcpp::loadModule("stan_fit4av_normal_mod", what = TRUE) Rcpp::loadModule("stan_fit4constant_mod", what = TRUE) Rcpp::loadModule("stan_fit4tv_normal_mod", what = TRUE) Rcpp::loadModule("stan_fit4tv_normal_log_mod", what = TRUE)