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 位。
相關用法
- R語言 round()用法及代碼示例
- R語言 trunc()用法及代碼示例
- R語言 signif()用法及代碼示例
- R語言 pretty()用法及代碼示例
- R語言 transform()用法及代碼示例
- R語言 sweep()用法及代碼示例
- R語言 beep()用法及代碼示例
- R語言 trimws()用法及代碼示例
- R語言 unlist()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 sqrt()用法及代碼示例
- R語言 prod()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 cm.colors()用法及代碼示例
- R語言 terrain.colors()用法及代碼示例
注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Rounding off values in R Language – round() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。