当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 round()用法及代码示例


R 语言中的 round() 函数用于将值四舍五入到特定数量的十进制值。

用法: round(x, digits)
参数: 
x: Value to be round off 
digits: Number of digits to which value has to be round off

示例 1:四舍五入值

Python3


# R program to illustrate
# round function
 
# Create example values
x1 <- 1.2                          
x2 <- 1.8
x3 <- - 1.3
x4 <- 1.7
 
# Apply round function
round(x1)                          
round(x2)
round(x3)
round(x4)
 
print(x1, x2, x3, x4)

输出:



 1
 2
-1
 2

在上面的代码中,我们使用函数 round() 将 4 个数据 x1、x2、x3 和 x4 的值四舍五入,并打印出新值。 示例 2:四舍五入到某些数字

Python3


# R program to illustrate
# round to a certain digit
 
# Create numeric with many digits
x2 <- 3.14734343243  
 
# Round to three decimal places                 
round(x2, digits = 3) 
 
print(x2)            

输出:

 3.147 

在上面的代码中,数字向量的值四舍五入到 3 位。

相关用法


注:本文由纯净天空筛选整理自akhilsharma870大神的英文原创作品 Rounding off values in R Language – round() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。