在 R 编程中计算四分位距 - IQR()函数
R语言中的IQR()
函数用于计算数据集的四分位距。
Mathematically,
IQR = Q3 – Q1
where,
Q3 specifies the median of n largest values
Q1 specifies the median of n smallest values
但是,R 提供了内置的 IQR()函数来执行给定的计算
Syntax: IQR(x)
Parameters:
x: Data set
示例 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