diff --git a/DESCRIPTION b/DESCRIPTION index 2684a1d..cc212a5 100755 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: diagnosticSummary Title: Diagnostic Summaries -Version: 0.0.1.05 +Version: 0.0.1.06 Authors@R: c(person(given = "Pat", family = "Johnson", diff --git a/R/dx_forest.R b/R/dx_forest.R index a437830..7e92262 100755 --- a/R/dx_forest.R +++ b/R/dx_forest.R @@ -562,7 +562,7 @@ plot_range <- function(limits = NA, breaks = NA, trans = NA, res <- c(min(pretty), max(pretty)) } else { high <- ceiling(log10(max_or)) - low <- max(c(0, floor(log10(min_or)))) + low <- floor(log10(min_or)) res <- 10^c(low, high) } }