我的图表目前包含多个x轴项目,每个项目获得2个y轴值(每组一个,表示使用stat_summary)。但是,为了stat_summary的平均功能,图表被翻转(但这不是重点)。
df <- data.frame(
value = c(0, 0, -2, 1, 2, -2, 3, 1, 2, 3, 2, -1),
type = c('P', 'P', 'E', 'P', 'E', 'E', 'P', 'E', 'E', 'E', 'P', 'P'),
item = c('well-written', 'concise', 'well-written', 'clear', 'concise', 'clear', 'lively', 'fair', 'lively', 'pleasing', 'pleasing', 'fair')
)
ggplot(df, aes(x=item, y=value, colour=type)) +
stat_summary(fun.y=mean, geom='point', size=3) +
scale_y_continuous(limits=c(-3, 3), breaks=c(-3, -2, -1, 1, 2, 3), minor_breaks=c(0)) +
scale_linetype_discrete() +
coord_flip()
我想要的是,对于每一个项目(&#34;精心编写&#34;,&#34;简洁&#34;,...)从E(红点)到P绘制箭头(蓝点)。因此,我想要多个水平箭头,每个项目一个。
如何?
这里只有一点点补充:我知道在这个例子中我不需要平均函数但是我的实际数据要大得多,并且包含多个P /写得好,E /简洁等值,以便平均函数有道理
答案 0 :(得分:1)
这是一种方法,但需要先创建第二个数据框:
library(tidyr)
df2 <- df %>% spread(type, value)
然后您可以像这样添加geom_segment
:
ggplot(df, aes(x=item, y=value, colour=type)) +
stat_summary(fun.y=mean, geom='point', size=3) +
scale_y_continuous(limits=c(-3, 3), breaks=c(-3, -2, -1, 1, 2, 3), minor_breaks=c(0)) +
scale_linetype_discrete() +
coord_flip() +
geom_segment(data = df2, aes(x = item, xend = item, y = E, yend = P, group = item),
colour = "black",
arrow = arrow())