如何使用 ggplot2 绘制小提琴图?
我可以使用 ggplot2 生成小提琴图吗?也许使用geom_boxplot()
的一些变体?
Can I use ggplot2
to produce a violin plot? Perhaps using some variation of geom_boxplot()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
版本 0.9.0 包含
geom_violin
:http://docs.ggplot2.org/current/geom_violin .htmlVersion 0.9.0 includes the
geom_violin
: http://docs.ggplot2.org/current/geom_violin.html快速谷歌搜索返回 这个站点,它使用 geom_ribbon 绘制图 3.14 的小提琴图。
任何追赶的人请注意
正如@Ben 在下面指出的那样,geom_violin() 现在是在 ggplot2 中生成小提琴图的首选方法。
A quick googling returns this site, which uses geom_ribbon to draw violin plots for Figure 3.14.
Note to anyone catching up
As @Ben points out below, geom_violin() is now the preferred method for producing violin plots in ggplot2.