R 图形:向堆积条形图添加标签
我正在寻找一种使用 R 的基本绘图函数将标签(即绝对值)添加到堆积条形图中的方法。标签应位于堆积条形图内。
谢谢你!
I am looking for a way to add labels, i.e. absolute values, into a stacked bar chart using the basic plot functions of R. The labels should be inside the stacked bars.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
barplot
将返回条形的中间 x 位置,因此您可以编辑:重新阅读您的问题,我认为这就是您想要的(或者可能不是,但是无论如何我都会写它:D)
barplot
will return the mid x position of the bars, so you could doEDIT: re-reading your question, I think this is what you want (or maybe not, but I'll write it anyways :D)
简单的函数
text()
怎么样?您可以简单地在任意位置添加字符串,例如:
How about the simple function
text()
?You can simply add a string where ever you want, eg:
也许您可以使用或检查 plotrix 包
Maybe you can use or inspect the barp function of the plotrix package