Commit 4d56d791d5b88c5b735450b398989ece39b6de4b

Authored by bhklein
1 parent 9af93636

disable scientific notation

share/openbr/plotting/plot_utils.R
... ... @@ -71,7 +71,9 @@ plotFRR <- function(tableData=NULL, operatingPoint=1e-4) {
71 71 colnames(mat) <- tableData[,minor][!duplicated(tableData[,minor])]
72 72 rownames(mat) <- tableData[,major][!duplicated(tableData[,major])]
73 73 table <- as.table(mat)
  74 + options(scipen = 999)
74 75 print(textplot(table))
  76 + options(scipen = 0)
75 77 print(title(paste("False Reject Rate at FAR=", toString(operatingPoint))))
76 78 }
77 79  
... ...