Something changed with the ggtitle syntax in the latest version of ggplot2.

This commit is contained in:
Ryan Poplin 2013-08-14 14:40:03 -04:00
parent 928a9779db
commit d4ac183580
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ plotJobsGantt <- function(gatkReport, sortOverall, title, includeText) {
p <- p + xlim(0, maxRelTime * 1.3)
p <- p + xlab(paste("Start time, relative to first job", RUNTIME_UNITS))
p <- p + ylab("Job number")
p <- p + ggtitle(title)
p <- p + opts(title = title)
print(p)
}