2

我在 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

任何帮助,将不胜感激!

4

1 回答 1

4

您可能正在使用 ggplot2 < 0.9.2。试试这个:

p + opts(title="Title text").
于 2013-10-24T19:07:49.960 回答