8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

当绘图是网格的一部分时,geom_segment 不显示

onlyf 2月前

32 0

当单独显示时,我可以成功地将带有箭头的 geom_segment 线添加到图中,pl <- ggplot(df.melted, aes(x=energy, y=intensity))pl <- pl + geom_line(aes(color=series))pl &l...

当单独显示时,我可以成功地将带有箭头的 geom_segment 线添加到图中,

pl <- ggplot(df.melted, aes(x=energy, y=intensity))
pl <- pl + geom_line(aes(color=series))
pl <- pl + geom_segment(x=compRange[1], y=2E+10, xend=compRange[2], yend=2E+10, color=gg_color_hue(1), linewidth=0.5, linetype="dashed", arrow=arrow(ends="both", type="closed", length=unit(2, "mm")))

但是,当该图与另一个图一起排列在网格中时,不会显示段线:

ps <- ggplot(dfOrigXRTS, aes(x=energy, y=diff))
ps <- ps + geom_point(color="blue", size=1)
grid.arrange(pl,ps,ncol=1,nrow=2,heights=c(2,1))

R 和软件包的版本如下:R 4.4.0、ggplot2 3.5.1、gridExtra 2.4

帖子版权声明 1、本帖标题:当绘图是网格的一部分时,geom_segment 不显示
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由onlyf在本站《r》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我认为你缺少一种美感。 pl <- pl + geom_segment( aes(x=compRange[1], y=2E+10, xend=compRange[2], yend=2E+10), color=gg_color_hue(1), linewidth=0.5, linetype=\'dashed\', arrow=arrow(ends=\'both\', type=\'closed\', length=unit(2, \'mm\')))

返回
作者最近主题: