如何将`points()`放在R中每个直方图条的正上方

时间:2017-05-30 07:29:40

标签: r

我想知道如何将points()放在R中给定直方图中每个直方图条的顶部(例如下面的x)?

x = rnorm(1e2)

1 个答案:

答案 0 :(得分:0)

非常简单,我为“密度”直方图提供了两种解决方案,并为您的示例提供了“频率”直方图:

x = rnorm(1e2)

h = hist(x, freq = F)

points(h$mids, h$density, cex = 3)

h = hist(x)

points(h$mids, h$counts, cex = 3)