用ggplot2垂直堆积密度图

时间:2018-10-09 07:53:34

标签: r ggplot2 data-visualization

对此没有代码,很抱歉,但是我只是想开始尝试使用ggplot2在R中创建图形类型,该图形类型应类似于以下内容(不确定其制作方式,这是屏幕截图)我拍了):

enter image description here 我应该只使用geom_density + facet_wrap吗?还是有人知道一种更好的方法来实现像这样的图形类型的编码?

谢谢!

1 个答案:

答案 0 :(得分:2)

我会使用facet_grid而不是facet_wrap来实现这一点,但这是ggplot2中最简单的方法

这是一个可行的示例:

diamonds %>% 
   filter(cut %in% c('Ideal','Premium','Very Good')) %>% 
   ggplot(aes(carat)) + 
   geom_density() + 
   facet_grid(cut ~ .)