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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。