R中的直方图将标签和颜色添加到2个直方图中

时间:2015-12-22 17:28:33

标签: r plot histogram

我有2个数据集,我在R中运行hist命令以创建直方图。我在最后将它们合并在一个图中。所以我的代码是这样的:

hist(dist_x1,col="green",pch=20,cex=4,breaks=15)
hist(dist_x2,col="red",pch=20,cex=4,breaks=15,add=TRUE)
box()

我想在创建的hist图中放置2个标签(类似于R中的图例)以指示什么是什么并区分同一图中存在的这2个直方图。

任何想法?

1 个答案:

答案 0 :(得分:1)

您可以添加图例

dist_x1 <- rnorm(1000)
dist_x2 <- rnorm(500)
hist(dist_x1,col="green",pch=20,cex=4,breaks=15)
hist(dist_x2,col="red",pch=20,cex=4,breaks=15,add=TRUE)
legend("topright", c("dist_x1", "dist_x2"), fill=c("red", "green"))
box()

的产率:

enter image description here