IQR()
R語言中的函數用於計算數據集的四分位距。
Mathematically,
IQR = Q3 - Q1where,
Q3 specifies the median of n largest values
Q1 specifies the median of n smallest values
但是,R 提供了內置的 IQR() 函數來執行上麵的計算
用法: IQR(x)
參數:
x:數據集
範例1:
# R program to calculate IQR value
# Defining vector
x <- c(5, 5, 8, 12, 15, 16)
# Print Interquartile range
print(IQR(x))
輸出:
[1] 8.5
範例2:
# R program to calculate IQR value
# Defining a matrix
x <- matrix(c(1:9), 3, 3)
# Print Interquartile range
print(IQR(x))
輸出:
[1] 4
相關用法
- R語言 acos()用法及代碼示例
- R語言 cos()用法及代碼示例
- R語言 cosh()用法及代碼示例
- R語言 sin()用法及代碼示例
- R語言 sinh()用法及代碼示例
- R語言 tanh()用法及代碼示例
- R語言 tan()用法及代碼示例
- R語言 asin()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 atan()用法及代碼示例
- R語言 exp()用法及代碼示例
- R語言 factorial()用法及代碼示例
- R語言 choose()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 colSums()用法及代碼示例
- R語言 colMeans()用法及代碼示例
- R語言 cumsum()用法及代碼示例
- R語言 mean()用法及代碼示例
- R語言 rowMeans()用法及代碼示例
- R語言 diff()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate the Interquartile Range in R Programming – IQR() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。