scales=free shows variance within analysis better

This commit is contained in:
Mark DePristo 2011-12-07 14:09:32 -05:00
parent 9def841275
commit 50c4436f90
1 changed files with 1 additions and 1 deletions

View File

@ -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"))