2012-09-25 88 views
1

如何在ggplot2中創建繪圖標題?我是否犯了一個愚蠢的語法錯誤?ggplot2中缺少繪圖標題

ggplot2 docs表明實驗室(標題=「富」)應該工作,但是我只能得到的參數x='foo'y='foo'labs()工作。 ggtitle()title()都沒有工作。

這裏是一個例子。

x <- rnorm(10,10,1) 
y <- rnorm(10,20,2) 
xy.df <- data.frame(x,y) 
qplot(x,y, data=xy.df, geom='point', color=x*y) + 
    labs(title = "New Plot Title", 
     x='Some Data', 
     y='Some Other Data') 

回答

1

您可以使用main參數的功能qplot

qplot(x,y, data=xy.df, geom='point', color=x*y, main = "New Plot Title") + 
    labs(x='Some Data', 
     y='Some Other Data') 

enter image description here

+0

爲你做的有機磷農藥代碼工作? – csgillespie

+0

@csgillespie是的,它的工作,但只有當我從第二行的開頭移動到第一行的末尾(如我的答案)。 –

+0

'+'的位置是編輯的人工產物。 – joran