R:使用bin计数和bin中断来获得直方图

时间:2017-02-03 17:14:28

标签: r plot histogram

我从正态分布生成随机向量并绘制直方图。

我修改了每个bin的计数,我想绘制另一个具有相同中断(break_vector)和新bin计数向量(new_counts)的直方图。

怎么做?

我试过barplot(),但它显示bin标签的方式不同。

x = rnorm(500,1,6)
delta = 1
break_vector = seq(min(x)-delta,max(x)+delta,by=delta)
hist_info = hist(x,breaks=break_vector)

new_counts = hist_info$counts+5

1 个答案:

答案 0 :(得分:1)

尝试

new_hist <- hist_info
new_hist$counts <- hist_info$counts + 5
plot(new_hist)