当前位置:  开发笔记 > 编程语言 > 正文

ggplot为facet_wrap中的每个绘图添加刻度

如何解决《ggplot为facet_wrap中的每个绘图添加刻度》经验,为你挑选了1个好方法。

我想在facet_wraps的上面一行中的图上显示x轴刻度.例如:

library(ggplot2)
ggplot(diamonds, aes(carat)) +  facet_wrap(~ cut, scales = "fixed") +  geom_density()

生成这个情节:

实际情节

我想在这个情节中画出蜱虫: 期望的情节

有没有一种简单的方法来实现这个结果?



1> alistaire..:

使用scales = "free_x"为每个图添加x轴:

ggplot(diamonds, aes(carat)) + 
    geom_density() + 
    facet_wrap(~cut, scales = "free_x")

用x轴绘图

然而,正如你可以看到和语法所暗示的,它也释放每个地块的限制自动调整,因此,如果你希望它们都保持一致,你需要设置它们xlim,limsscale_x_continuous:

ggplot(diamonds, aes(carat)) + 
    geom_density() + 
    xlim(range(diamonds$carat)) + 
    # or lims(x = range(diamonds$carat))    
    # or scale_x_continuous(limits = range(diamonds$carat))
    facet_wrap(~cut, scales = "free_x")

用均匀的x轴绘图

推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有