Skip to content

Commit

Permalink
increase weibull lower bound
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlambert committed May 1, 2024
1 parent 1c6345e commit 8983aab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/extract_param.R
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ extract_param <- function(type = c("percentiles", "range"),
}
if (distribution == "weibull") {
names(param) <- c("shape", "scale")
lower <- c(1e-10, 1e-10)
lower <- c(1e-5, 1e-5)
}
if (distribution == "norm") {
names(param) <- c("mean", "sd")
Expand Down

0 comments on commit 8983aab

Please sign in to comment.