我在 R 中使用 ggplot2 来制作如下图:
误差条相互重叠,看起来很乱。如何区分不同索引的误差线?我使用了 position="dodge" 但它似乎不起作用。这是我的代码的主要部分:
plot = ggplot(data,aes(x=ntrunc,y=beta_best,group=ntrunc,colour=INDEX))
+geom_point(aes(shape=detectable),na.rm=TRUE,position="dodge")
+geom_errorbar(aes(x=ntrunc,ymax=beta_high,ymin=beta_low),na.rm=TRUE,position="dodge")