热线电话:13121318867

登录
2019-02-20 阅读量: 1933
多组数据的直方图与密度图的绘制方法

  1. # 叠加直方图
  2. ggplot(dat, aes(x=rating, fill=cond)) +
  3.     geom_histogram(binwidth=.5, alpha=.5, position="identity")

  4. # 交错直方图
  5. ggplot(dat, aes(x=rating, fill=cond)) +
  6.     geom_histogram(binwidth=.5, position="dodge")

  7. # 密度图
  8. ggplot(dat, aes(x=rating, colour=cond)) + geom_density()

  9. # 带半透明填充的密度图
  10. ggplot(dat, aes(x=rating, fill=cond)) + geom_density(alpha=.3)


7.png
8.png
9.png
10.png
0.0000
1
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子