Skip to content
Snippets Groups Projects
Commit 24c11fca authored by Rob Moss's avatar Rob Moss
Browse files

Ensure RBC lifespan is shown as an integer

parent 1abf69e8
Branches
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ remove_nonscalar_derived_parameters <- function(x) {
}
# Define how to format parameter values of different magnitudes.
format_value <- function(x, nsmall = 4, digits = 5, min = 1e-3, max = 1e3,
format_value <- function(x, nsmall = 4, digits = 5, min = 1e-4, max = 1e4,
delim = TRUE) {
scientific <- x < min || x > max
result <- format(x, digits = digits, nsmall = nsmall,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment