美文网首页
ggplot2: 坐标轴截断

ggplot2: 坐标轴截断

作者: LET149 | 来源:发表于2023-06-27 09:14 被阅读0次

    1. gg.gap

    https://www.jianshu.com/p/196e284322bd
    https://github.com/ChrisLou-bioinfo/gg.gap

    plot_1 <- ggplot()
    gg.gap(plot=plot_1, segments=, ylim=, tick_width=)

      1. segments= : 规定截掉y轴的范围
      1. ylim= : 规定显示y轴的总体范围
      1. tick_width= : 规定余下部分分割间隙,决定y轴的坐标显示
    plot_1 <- ggplot()+geom_bar(data=kk, aes(x=V2, y=V1, group=group, fill=V3), stat = "identity", position = "dodge")
    plot_1  #示例一
    
    gg.gap(plot = plot_1, segments = list(c(60,100),c(1860,8500)), ylim = c(0,10000), tick_width=c(10,400,500)   #示例二
    
    示例一
    示例二

    相关文章

      网友评论

          本文标题:ggplot2: 坐标轴截断

          本文链接:https://www.haomeiwen.com/subject/hyrzprtx.html