如何使用ggplot2 + directlabels标签的自定义名称

时间:2012-07-17 22:53:54

标签: r ggplot2

我在geom_line()图中使用ggplot2和directlabels包,我希望其中一个标签读作“X-M”。但是,在我的data.frame()“XM”中,由于列名称被重命名为“XM”,我找不到有关如何为direct.label函数提供自定义标签名称的文档,也没有阅读源代码帮助。 (directabels似乎没有遵守ggplot规模中设置的标签名称,这是我尝试过的第一件事。)

示例代码:

library("scales")
library("reshape2")
library("ggplot2")
library("directlabels")

data = data.frame(
  C = c(1.2, 1.4, 0.3, -2.0, 0.5),
  I = c(1.2, 1.5, -1.3, -3.8, 1.8),
  G = c(0.2, 0.3, 0.3, 0.2, 0.2),
  "X-M" = c(2.9, -0.7, 0.3, -2.8, 1.5) +
          c(-2.7, 0.2, 0.4, 3.6, -2.4),
  year = c("2006", "2007", "2008", "2009", "2010"))

p <- ggplot(data = melt(data), aes(year, value, color = variable)) +
  geom_line(aes(group = variable)) +
  scale_color_hue(breaks = c("C", "I", "G", "X.M"),
                  labels = c("C", "I", "G", "X-M"))  # directlabels doesn't
                                                     # use this

# Compare:
p

# with:
direct.label(p, list(last.points, hjust = -0.25))

可以看到结果图here。直接标签使用“X.M”而不是“X-M”。非常感谢提前!

1 个答案:

答案 0 :(得分:3)

directlabels似乎从您的数据中的列名中获取标签。

这意味着您必须确保数据中的标签正确无误。为此,您必须在创建check.names=FALSE时设置data.frame

data = data.frame(
  C = c(1.2, 1.4, 0.3, -2.0, 0.5),
  I = c(1.2, 1.5, -1.3, -3.8, 1.8),
  G = c(0.2, 0.3, 0.3, 0.2, 0.2),
  "X-M" = c(2.9, -0.7, 0.3, -2.8, 1.5) +
    c(-2.7, 0.2, 0.4, 3.6, -2.4),
  year = c("2006", "2007", "2008", "2009", "2010"),
  check.names=FALSE)

data
     C    I   G  X-M year
1  1.2  1.2 0.2  0.2 2006
2  1.4  1.5 0.3 -0.5 2007
3  0.3 -1.3 0.3  0.7 2008
4 -2.0 -3.8 0.2  0.8 2009
5  0.5  1.8 0.2 -0.9 2010

现在情节:

p <- ggplot(data = melt(data), aes(year, value, color = variable)) +
  geom_line(aes(group = variable)) 
direct.label(p, list(last.points, hjust = -0.25))

enter image description here