當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。