From 21d58ccc4eaf5f74a971c7e2c246bdb5f6aba8a9 Mon Sep 17 00:00:00 2001 From: Jonathan Berrisch Date: Sun, 22 Jun 2025 20:04:12 +0200 Subject: [PATCH] mcrps: fix parameters plot (burn in) --- index.html | 2 +- index.qmd | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index c5a835e..55e40da 100644 --- a/index.html +++ b/index.html @@ -27182,7 +27182,7 @@ Y_{t} = \mu + Y_{t-1} + \varepsilon_t \quad \text{with} \quad \varepsilon_t = \
-

+

diff --git a/index.qmd b/index.qmd index 68efbe0..e3cb3f7 100644 --- a/index.qmd +++ b/index.qmd @@ -2554,8 +2554,8 @@ pars_data %>% geom_rect(aes( ymin = 0, ymax = value * 1.2, - xmin = dates[1], - xmax = dates[182], + xmin = sort(unique(dates))[1], + xmax = sort(unique(dates))[182], fill = "Burn-In" )) + geom_line(aes(color = name), linewidth = linesize, show.legend = FALSE) +