R 轮指数数
我只是想对 R 数字进行四舍五入,例如:
> round(1.327076e-09)
我希望它产生结果,
> 1.33e-09
但结果是
> 0
哪个函数可以使用?
I just trying to round in R number like:
> round(1.327076e-09)
I would like it to result in
> 1.33e-09
but results in
> 0
which function can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
signif
:Try
signif
:使用
signif
:或
sprintf
:Use
signif
:or
sprintf
:函数
round
将进行四舍五入,您可以指定小数位数:Rising to the Challenge set by @Joris and @GavinSimpson - 要在这个问题上使用
trunc
,请执行以下操作下列的:The function
round
will do rounding and you can specify the number of decimals:Rising to the challenge set by @Joris and @GavinSimpson - to use
trunc
on this problem, do the following: