将图表中的数字格式化为百分比
可能的重复:
如何在 R 中将数字格式化为百分比?
这肯定是一个新手问题,但是如何将图表中的数字(例如 PerformanceAnalytics 中的 PerformanceSummary)格式化为百分比?我使用的数据格式为 0.04 等。一切工作正常,除了我希望图表显示百分比。
提前致谢
编辑:
这就是我现在的做法(出于简单原因使用标准数据):
library("PerformanceAnalytics")
data(managers)
charts.PerformanceSummary(managers)
当我去谷歌搜索提供我自己的标签时,我把它放在这里。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非我错过了什么,否则我认为这根本不是一个新手问题。
(免责声明:我认为这个答案不是特别优雅,而且图形很糟糕。但希望它可以作为模板,以便其他人可以改进并发布一些正确的代码。)
此操作的一种方法:
yaxt="n"
seq
sprintf 和
round
为将标签格式化为带有百分号的文本一些代码:
情节:
Unless I miss something, I don't think this is a newbie question at all.
(Disclaimer: I think this answer isn't particularly elegant, and the graphic sucks. But hopefully it can serve as a template so somebody else can improve and post some proper code.)
Here is one way of doing it in base graphics:
yaxt="n"
seq
sprintf
andround
to format the labels as text with percentage signSome code:
The plot:
简短的回答是“你不能”。
拿出你的表现图表。这是一段很大的编程代码,由某人编写,用于制作一个精美的图表,在某些时候,作者决定用分数值标记 Y 轴,以显示它是什么 - 也许本月解雇的经理的比例。
如果您想将其更改为百分比,则需要在该代码中的某个位置将其更改为将轴标签乘以 100,在其上粘贴“%”符号,然后绘制它们。
您可以这样做,因为 R 和性能图表包是根据允许您编辑其代码的许可证发布的。去做吧。你会学到东西。
图形实体不像 Excel 或 SPSS 中那样独立存在 - 您不能只是说“将我所有的分数轴标签重新设计为百分比”。它只是不那样工作。
The short answer is 'you cant'.
Take your performance chart. This is a big piece of programming code, written by someone to do a fancy chart and at some point the author decided to label the Y axes with fractional values to show whatever it is - the fraction of managers to fire this month maybe.
If you want to change that to percentages, then somewhere in that code you need to change it to multiply the axis labels by 100, stick a "%" sign on them, and draw them.
You can do that, because R, and that performance charts package, are released under a license that lets you edit their code. Go do it. You'll learn stuff.
Graphical entities have no independent existence like they do in Excel or SPSS - you can't just say "restyle all my fractional axis labels as percentages". It just don't work like that.