From 6d12ffa15f59bf83b9b4c150575b147e629ea7ce Mon Sep 17 00:00:00 2001 From: Mathias Lerbech Jeppesen Date: Sun, 8 Dec 2024 21:06:42 -0800 Subject: [PATCH] docs: Set down the number of calculations in vignette building --- vignettes/performance.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/performance.Rmd b/vignettes/performance.Rmd index 04f99dc..095c5a5 100644 --- a/vignettes/performance.Rmd +++ b/vignettes/performance.Rmd @@ -29,7 +29,7 @@ We can use the functions `compare_eta_comptime_across_nvars()` and `plot_eta_com The basic usage of the function can be used to investigate the computational gain for high dimensions of the CGGibbs sampler compared to the naive approach of doing $d$ computation for each coordinate update. For this purpose, the function call is: ```{r run-compare-nvars} res <- compare_eta_comptime_across_nvars( - n_vars = c(2, seq(from = 50, to = 1000, by = 50)), + n_vars = c(2, seq(from = 50, to = 600, by = 50)), n_samples = 1, burnin = 0, w = 0.5)