當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 IQR()用法及代碼示例


IQR()R語言中的函數用於計算數據集的四分位距。

Mathematically,
IQR = Q3 - Q1

where,
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

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate the Interquartile Range in R Programming – IQR() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。