scheidan / adaptMCMC

R package that provides an implementation of the generic adaptive Monte Carlo Markov chain sampler proposed by Vihola (2011).
GNU General Public License v2.0
9 stars 5 forks source link

Progress Bar when using MCMC Parallel #8

Open arnab13061989 opened 1 year ago

arnab13061989 commented 1 year ago

Dear Andreas,

Will it be possible to display a progress bar when using the MCMC parallel. I have an intense function for computing likelihood. It would be nice if progress bar can be shown

Thanks, Arnab

scheidan commented 1 year ago

Thanks for the suggestion Arnab!

Maybe using ParallelLogger::ClusterApply instead of parallel::ClusterApply would already do the trick? https://cran.r-project.org/web/packages/ParallelLogger/index.html

I don't have time to work on it in the moment, but I keep it in mind for the next release.

arnab13061989 commented 1 year ago

Thanks Andreas