R 轮指数数

发布于 2024-11-01 04:15:14 字数 194 浏览 1 评论 0原文

我只是想对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一场春暖 2024-11-08 04:15:14

尝试 signif

输入图片此处描述

> signif(1.326135235e-09, digits = 3)
[1] 1.33e-09

Try signif:

enter image description here

> signif(1.326135235e-09, digits = 3)
[1] 1.33e-09
鹿港巷口少年归 2024-11-08 04:15:14

使用signif

x <- 1.327076e-09 
signif(x,3)
[1] 1.33e-09

sprintf

sprintf("%.2e",x)
[1] "1.33e-09"

Use signif:

x <- 1.327076e-09 
signif(x,3)
[1] 1.33e-09

or sprintf:

sprintf("%.2e",x)
[1] "1.33e-09"
一向肩并 2024-11-08 04:15:14

函数round将进行四舍五入,您可以指定小数位数:

x <- 1.327076e-09
round(x, 11)
[1] 1.33e-09

Rising to the Challenge set by @Joris and @GavinSimpson - 要在这个问题上使用trunc,请执行以下操作下列的:

library(plyr)
round_any(x, 1e-11, floor)
[1] 1.32e-09

The function round will do rounding and you can specify the number of decimals:

x <- 1.327076e-09
round(x, 11)
[1] 1.33e-09

Rising to the challenge set by @Joris and @GavinSimpson - to use trunc on this problem, do the following:

library(plyr)
round_any(x, 1e-11, floor)
[1] 1.32e-09
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文