R直方图图中每个箱中的实例数(R histogram number of instances in each bin on plot)

系统教程 行业动态 更新时间:2024-06-14 16:59:47
R直方图图中每个箱中的实例数(R histogram number of instances in each bin on plot)

我想看到每个bin的实例数量也显示在图表上

set.seed(1) x<-rnorm(1:100) hist(x)

I would like to see the number of instances for each bin show up on the graph as well

set.seed(1) x<-rnorm(1:100) hist(x)

最满意答案

试试这个

set.seed(1) x<-rnorm(1:100) y <- hist(x, plot=FALSE) plot(y, ylim=c(0, max(y$counts)+5)) text(y$mids, y$counts+3, y$counts, cex=0.75)

这使:

在此处输入图像描述

Try this

set.seed(1) x<-rnorm(1:100) y <- hist(x, plot=FALSE) plot(y, ylim=c(0, max(y$counts)+5)) text(y$mids, y$counts+3, y$counts, cex=0.75)

which gives:

enter image description here

更多推荐

本文发布于:2023-04-17 09:15:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/dzcp/c9f9105faa710b70850ffdcf335d5cad.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:直方图   图中   实例   histogram   plot

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!