ggplot中的geom_vline和facet_wrap错误

时间:2016-10-21 17:36:16

标签: r ggplot2

我正在尝试运行以下代码:

temp_plotdata <- data.table(Treatment_Code = c('Control', 'Control', 
                                               'Second Mailing', 'Second Mailing', 
                                               'First Mailing', 'First Mailing'),
                            Q9 = c(9, 14, 10, 3, 1, 4))

output_gg <-
  ggplot(temp_plotdata, aes(x = Q9)) +
  geom_histogram(binwidth = 1, fill = 'lightblue') +
  geom_vline(data = temp_plotdata[, summary(Q9)[c(2,3,5)], by=Treatment_Code],
             aes(xintercept = V1),
             linetype = 'dashed', color = 'darkred') +
  facet_wrap(~Treatment_Code, ncol = 1)

我收到了错误:

  

provideDimnames(x,sep = sep,base = base)出错:     &#39; dimnames&#39;应用于非数组

我知道问题出现在代码的geom_vline部分,因为当我在没有这些行的情况下运行它或者使用geom_vline(xintercept = c(3, 5, 8))之类的东西运行它时,它可以正常工作。我还尝试先将geom_vline中的数据转换为单独的数据帧,但它不起作用。

去年我运行了一段非常相似的代码并且工作正常,所以我不确定geom_vline是否有变化,或者由于新数据或某些小数据导致我的代码不正确改变我可能不小心做了。

感谢您提供任何帮助。

1 个答案:

答案 0 :(得分:2)

这种情况正在发生,因为V1的类(data.table返回的摘要列)是表,而不是数字向量。将其更改为矢量,它应该可以工作。

output_gg <-
  ggplot(temp_plotdata, aes(x=Q9)) +
  geom_histogram(binwidth=1, fill='lightblue') +
  geom_vline(data=temp_plotdata[, as.vector(summary(Q9)[c(2,3,5)]), by=Treatment_Code],
             aes(xintercept=V1),
             linetype='dashed', color='darkred') +
  facet_wrap(~ Treatment_Code, ncol=1)

比较前后数据框的结构:

str(temp_plotdata[, summary(Q9)[c(2,3,5)], by=Treatment_Code])
Classes ‘data.table’ and 'data.frame':    9 obs. of  2 variables:
  $ Treatment_Code: chr  "Control" "Control" "Control" "Second Mailing" ...
  $ V1            :Class 'table'  num [1:9] 10.25 11.5 12.75 4.75 6.5 ...
- attr(*, ".internal.selfref")=<externalptr>
str(temp_plotdata[, as.vector(summary(Q9)[c(2,3,5)]), by=Treatment_Code])
Classes ‘data.table’ and 'data.frame':    9 obs. of  2 variables:
  $ Treatment_Code: chr  "Control" "Control" "Control" "Second Mailing" ...
  $ V1            : num  10.25 11.5 12.75 4.75 6.5 ...
- attr(*, ".internal.selfref")=<externalptr>