From 5c31f8be667c59c19880cf28f016099631dca467 Mon Sep 17 00:00:00 2001 From: tereom Date: Wed, 27 Nov 2024 19:47:47 -0600 Subject: [PATCH] Fix error boot --- 10-bootstrap-parametrico.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10-bootstrap-parametrico.Rmd b/10-bootstrap-parametrico.Rmd index 203afff..eb03df1 100644 --- a/10-bootstrap-parametrico.Rmd +++ b/10-bootstrap-parametrico.Rmd @@ -448,7 +448,7 @@ rep_boot <- function(rep, simular, crear_log_p, pars, n){ set.seed(8934) reps_boot <- map(1:500, ~ rep_boot(.x, simular_modelo, crear_log_p, est_mle, n = length(muestra))) |> - bind_rows + bind_rows() reps_boot |> mutate(across(everything(), round, 2)) |> head() ```