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


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


R 语言提供了一个内置函数 round(),它四舍五入到给定的位数,如果没有提供四舍五入的位数,它会将数字四舍五入到最接近的整数。

用法: round(x, digits=n)

参数:
x:要四舍五入的数字
digit:指定数字

范例1:


# R program to calculate round value 
    
# Using round() method 
answer1 <- round(2.356) 
answer2 <- round(2.356, digits = 2)  
answer3 <- round(2.5)
answer4 <- round(2.5, digits = 1)  
  
print(answer1) 
print(answer2) 
print(answer3) 
print(answer4) 

输出:

2
2.36
2
2.5

范例2:


# R program to calculate round value 
    
# Using round() method 
answer1 <- round(c(1.5, 2.6, -3, -3.4)) 
  
print(answer1)  

输出:

2  3 -3 -3

相关用法


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