sprintf 中不显示整数的小数点
我需要将一些数值转换为字符。我想显示相关的尾随零,如果数字是整数,则不显示小数位。例如,在下面的代码中,我需要输出为 "11" "0.30" "0.00050" "3.1" "4.6"
。如何让 11 显示为“11”而不是“11.”?
sprintf('%#.2g', c(11, 0.301, 0.000502, 3.12, 4.56))
I need to convert some numeric values to characters. I want to show trailing zeros if relevant, and no decimal place if the number is an integer. For example, in the code below, I need my output to be "11" "0.30" "0.00050" "3.1" "4.6"
. How do I get the 11 to display as "11" not "11."?
sprintf('%#.2g', c(11, 0.301, 0.000502, 3.12, 4.56))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以删除尾随的 .像这样:
You can remove the trailing . like this: