R 語言中的 signif() 函數用於四舍五入到指定的有效數字位數。
用法: signif(x, digits)
參數:
x:指明號碼
digits:有效數字
範例1:
# R program to illustrate
# signif function
# Generating random number
x <- rnorm(1)
x
# Calling the signif() function
signif(x)
輸出:
[1] 1.064923 [1] 1.06492
範例2:
# R program to illustrate
# signif function
# Generating random number
x <- rnorm(1)
x
# Calling the signif() function
# with 3 significant digits
signif(x, 3)
輸出:
[1] 1.078385 [1] 1.08
注意:rnorm() 函數每次運行都會生成不同的隨機數。
相關用法
- R語言 round()用法及代碼示例
- R語言 trunc()用法及代碼示例
- R語言 round()用法及代碼示例
- R語言 rep.int()用法及代碼示例
- R語言 seq_len()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 word()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 curve()用法及代碼示例
- R語言 strtrim()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 gl()用法及代碼示例
- R語言 polygon()用法及代碼示例
- R語言 rep_len()用法及代碼示例
- R語言 seq.int()用法及代碼示例
- R語言 rgb()用法及代碼示例
- R語言 colorRampPalette()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 cm.colors()用法及代碼示例
- R語言 terrain.colors()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Rounding up to the Specified Number of Significant Digits in R Programming – signif() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。