Wie Sie Titel position in ggplot2

Hier ist der code:

require(ggplot2)
require(grid)
# pdf("a.pdf")
png('a.png')
a <- qplot(date, unemploy, data = economics, geom = "line") + opts(title='A')
b <- qplot(uempmed, unemploy, data = economics) + geom_smooth(se = F) + opts(title='B')
c <- qplot(uempmed, unemploy, data = economics, geom="path") + opts(title='C')
grid.newpage()
pushViewport(viewport(layout = grid.layout(2, 2)))
vplayout <- function(x, y) viewport(layout.pos.row = x, layout.pos.col = y)
print(a, vp = vplayout(1, 1:2))
print(b, vp = vplayout(2, 1))
print(c, vp = vplayout(2, 2))
dev.off()

Und Ergebnis:

Wie Sie Titel position in ggplot2

Während hier ist, was ich haben möchte, also auf position Titeln in der Nähe der Spitze der y-Achse:

Wie Sie Titel position in ggplot2

InformationsquelleAutor qed | 2013-10-27

Schreibe einen Kommentar