From 5c4274bea3f442c4b3b42a618150dce451087f6d Mon Sep 17 00:00:00 2001 From: bhklein Date: Wed, 28 Nov 2018 17:20:55 -0700 Subject: [PATCH] quote fix --- share/openbr/plotting/plot_utils.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)]) -- libgit2 0.21.4