按计数的颜色条形图
我正在 R 中创建一个条形图,并希望按条形高度(计数)为每个条形着色。
目前我所拥有的:
z=rnorm(n,1)
Z=runif(n)
h=barplot(Z)
我有图片,但没有足够的声誉来发布它们。 这是 MatLab 中的示例: MatLab-颜色条按高度
I am creating a barplot in R and want to color each bar by bar height (count)
Currently what I have:
z=rnorm(n,1)
Z=runif(n)
h=barplot(Z)
I have pictures but not enough reputation to post them.
So here is the example in MatLab:
MatLab-Color bars by height
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了 baptiste 的 ggplot2 解决方案之外,这里还有一个使用
barplot
的简单示例:它会生成如下内容:
In addition to baptiste's ggplot2 solution, here's a simple example using
barplot
:which produces something like this:
试试这个,
Try this,