我想在直方图中比较两个变量,如下所示。对于直方图的每个bin,都显示了两个变量的频率,这使得比较它们变得容易。
最佳答案
您可以将add
参数用于hist
(请参阅?hist
和?plot.histogram
):
hist(rnorm(1000, mean=0.2, sd=0.1), col='blue', xlim=c(0, 1))
hist(rnorm(1000, mean=0.8, sd=0.1), col='red', add=T)
为了了解
add
参数,我注意到在?hist
中...
参数说这些是传递给plot.histogram
的参数,并且add
在?plot.histogram
中进行了文档记录。或者,?hist
底部的示例之一使用ojit_code参数。关于r - R中两个变量的直方图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14638788/