根据基础R或ggplot中的区间中点绘制数字频率数据

时间:2016-01-08 16:04:00

标签: r plot ggplot2 histogram density-plot

我正在复制已发表研究的模拟结果。作者以非常矩形的密度图(下图)显示其输出。他们似乎已经创建了箱子,然后绘制了箱子的中点。是否可以使用基础R 图形或 ggplot 轻松构建此类图表?

enter image description here

1 个答案:

答案 0 :(得分:1)

确实非常简单:

data=rnorm(1000)
hist_info=hist(data, plot=F)
plot(hist_info$mids, hist_info$density, type="l", xlab="X", ylab="density")

enter image description here