From d1a1ebeb71c5f53e3cde5a199483552007cebce7 Mon Sep 17 00:00:00 2001 From: Muhammad Jarir Kanji Date: Tue, 8 Feb 2022 06:41:44 +0500 Subject: [PATCH] Setting INLA calls to be verbose by default --- R/predict_inla.R | 1 + R/predict_inla_avg_trend.R | 1 + 2 files changed, 2 insertions(+) diff --git a/R/predict_inla.R b/R/predict_inla.R index bd79763..3e4d9a2 100644 --- a/R/predict_inla.R +++ b/R/predict_inla.R @@ -263,6 +263,7 @@ fit_inla_model <- function(df, mdl <- INLA::inla(formula = formula, data = x, control.predictor = control.predictor, + verbose = TRUE, ...) predict_inla_data(x, mdl, diff --git a/R/predict_inla_avg_trend.R b/R/predict_inla_avg_trend.R index 83ba991..f70f394 100644 --- a/R/predict_inla_avg_trend.R +++ b/R/predict_inla_avg_trend.R @@ -270,6 +270,7 @@ fit_inla_average_model <- function(df, mdl <- INLA::inla(formula = formula, data = x, control.predictor = control.predictor, + verbose = TRUE, ...) predict_inla_data(x, mdl,