ggplot2 1.01中没有更多geom_label()?

时间:2015-12-11 13:23:56

标签: r ggplot2

我正在关注this ggplot2 docs尝试使用geom_label重现文字标签。但是我收到了一条错误消息,

  

“找不到函数geom_label”

?geom_label也说没有这样的功能。我检查了另外两台计算机并得到了相同的错误消息。所有都是 R 3.22 RStudio 0.99.489 或纯R命令。 ggplot2是与install.packages(ggplot2)一起安装的1.01版本。我没有从Google找到线索。因此,在创建任何文档之前,geom_label似乎已从最新的ggplot2中删除。

我的问题是:用什么代替geom_label,它在盒装背景中生成漂亮的文字标签?

以下是 ggplot2 文档中的代码,它们假设生成下图。

p <- ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars)))
p + geom_label()

enter image description here

1 个答案:

答案 0 :(得分:7)

geom_labelimplemented on 2015-07-24。 CRAN(1.0.1)的最新版本发布于2015-03-17。如果您要使用geom_label或等到上传到CRAN(可能需要一段时间),则需要安装development version from GitHub