diff --git a/share/openbr/plotting/plot_utils.R b/share/openbr/plotting/plot_utils.R index 797076c..e6fe528 100644 --- a/share/openbr/plotting/plot_utils.R +++ b/share/openbr/plotting/plot_utils.R @@ -8,7 +8,7 @@ library("png") library("grid") # Code to format FAR values -far_names <- list('0.0001'="FAR = 0.01%', '0.001'="FAR = 0.1%", '0.01'="FAR = 1%") +far_names <- list('0.0001'="FAR = 0.01%", '0.001'="FAR = 0.1%", '0.01'="FAR = 1%") far_labeller <- function(variable,value) { if (as.character(value) %in% names(far_names)) { return(far_names[as.character(value)])