240 投稿
收录了18篇文章 · 3人关注
  • Resize,w 360,h 240
    ggplot2: Boxplot

    1. 基础绘图 2. 离群值 ggplot()+geom_boxplot(data=, aes(x=, y=), outlier.size=, ...

  • Resize,w 360,h 240
    ggplot2: 火山图

    https://zhuanlan.zhihu.com/p/140535783[https://zhuanlan.zhihu.com/p/1405...

  • Resize,w 360,h 240
    ggplot2: 分页设置

    使用 ggplot2 自带函数 facet_wrap() 进行分页操作plot + facet_wrap(~split_by)split_by ...

  • Resize,w 360,h 240
    ggplot2: 饼图

    1. 基础饼图 ggplot() + geom_bar(data=, aes(x=, fill=)) + coord_polar(theta=,...

  • Resize,w 360,h 240
    ggplot2: 小提琴图

    用ggplot2绘制小提琴图 1. 绘制基础小提琴图 ggplot(data=, aes(x=, y=))+geom_violin(aes(fi...

  • Resize,w 360,h 240
    ggplot2: 直方图

    绘制直方图,类似与基本绘图中的hist() ggplot() + geom_histogram(data=, aes(x=), binwidth...

  • Resize,w 360,h 240
    ggplot2: geom_smooth() & stat_smooth()

    https://juejin.cn/post/7128265519047639077[https://juejin.cn/post/712826...

    0.1 LET149 0 1
  • Resize,w 360,h 240
    ggplot2: 折线图

    1.用ggplot2绘制折线图 ggplot(data=data_name, aes(x=colname_1, y=colname_2), co...

  • Resize,w 360,h 240
    ggplot2: 坐标系修饰

    https://liuxingming.blog.csdn.net/article/details/47427453?utm_medium=di...

  • Resize,w 360,h 240
    ggplot2: 密度图

    绘制密度图 ggplot() + geom_density(data=, aes(x=), color=, fill=)ggplot() + g...