绘制两个直方图

时间:2012-06-25 17:06:17

标签: r histogram

  

可能重复:
  How to plot two histograms together in R?

我想将两个直方图绘制在一起,两个直方图都具有相同的x轴单位和y轴单位。两个直方图取自两个文件,inp1和inp2。我尝试了以下代码,但它无法正常工作:

x1<-hist(inp1, 120, plot = 0)  
x2<-hist(inp2, 120, plot = 0)  
hist(x1, x2, 240, plot = 1)

1 个答案:

答案 0 :(得分:9)

你想要的那种情节严格来说不是直方图。不过,您可以使用barplot()beside=TRUE

创建类似的内容
## Example data
d1 <- rnorm(1000)
d2 <- rnorm(1000, mean=1)

## Prepare data for input to barplot
breaks <- pretty(range(c(d1, d2)), n=20)
D1 <- hist(d1, breaks=breaks, plot=FALSE)$counts
D2 <- hist(d2, breaks=breaks, plot=FALSE)$counts
dat <- rbind(D1, D2)
colnames(dat) <- paste(breaks[-length(breaks)], breaks[-1], sep="-")

## Plot it
barplot(dat, beside=TRUE, space=c(0, 0.1), las=2)