-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement rerun for random walk samplers #68
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #68 +/- ##
=======================================
Coverage 99.46% 99.46%
=======================================
Files 69 69
Lines 5187 5203 +16
=======================================
+ Hits 5159 5175 +16
Misses 28 28 ☔ View full report in Codecov by Sentry. |
R/sampler-random-walk.R
Outdated
##' | ||
##' @return A `monty_sampler` object, which can be used with | ||
##' [monty_sample] | ||
##' | ||
##' @export | ||
monty_sampler_random_walk <- function(vcv = NULL, boundaries = "reflect") { | ||
monty_sampler_random_walk <- function(vcv = NULL, boundaries = "reflect", | ||
rerun_every = Inf, rerun_random = FALSE) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to make rerun_random = TRUE
the default? I feel that's what most people preferred in the end
No description provided.