我想在直方图中比较两个变量,如下所示。对于直方图的每个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
底部的示例之一使用add
参数。关于r - R中两个变量的直方图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14638788/