ggplot标题不起作用?

时间:2013-10-24 19:02:37

标签: r ggplot2 title

我正在使用R中的ggplot2库并试图在我的ggplot上添加一个标题,但它告诉我ggtitle函数不存在!

这是我的代码:

p <- ggplot (data, aes(x, y)) +
  geom_point(shape= 21, fill= "blue", colour= "black", size=2) +
  xlab("X Value") + ylab("Y Value") +
  geom_smooth(method= "lm", se= FALSE,  colour= "red", formula=y ~ poly(x, 3, raw=TRUE)) +
  geom_errorbar(aes(ymin=y-SE, ymax=y+SE), width=.9)
p

我尝试了这个但是没有用:

    p <- ggplot (data, aes(x, y)) +
      geom_point(shape= 21, fill= "blue", colour= "black", size=2) +
      xlab("X Value") + ylab("Y Value") +
      geom_smooth(method= "lm", se= FALSE,  colour= "red", formula=y ~ poly(x, 3, raw=TRUE)) +
      geom_errorbar(aes(ymin=y-SE, ymax=y+SE), width=.9) + 
      ggtitle( "title")
    p

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:4)

您可能正在使用ggplot2&lt; 0.9.2。试试这个:

p + opts(title="Title text").