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


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