From 50c4436f90d4df204b1111940a9b8964ec03d291 Mon Sep 17 00:00:00 2001 From: Mark DePristo Date: Wed, 7 Dec 2011 14:09:32 -0500 Subject: [PATCH] scales=free shows variance within analysis better --- .../org/broadinstitute/sting/queue/util/queueJobReport.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R b/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R index 7bfdd4d84..aff783b8e 100644 --- a/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R +++ b/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R @@ -165,7 +165,7 @@ plotTimeByHost <- function(gatkReportData) { plotMe <- function(name, vis) { p = ggplot(data=runtimes, aes(x=exechosts, y=runtime, group=exechosts, color=exechosts)) - p = p + facet_grid(analysisName ~ .) + p = p + facet_grid(analysisName ~ ., scale="free") p = p + vis() p = p + xlab("Job execution host") p = p + opts(title = paste(name, "of job runtimes by analysis name and execution host"))