median()
R語言中的函數用於計算作為參數傳遞的數字向量元素的中值。
用法: median(x, na.rm)
參數:
x:數字向量
名稱:忽略 NA 的布爾值
範例1:
# R program to calculate median of a vector
# Creating vector
x1 <- c(2, 3, 5, 7, 4, 8, 6)
x2 <- c(-3, -5, 6, 2, -4)
# Calling median() function
median(x1)
median(x2)
輸出:
[1] 5 [1] -3
範例2:
# R program to calculate median of a vector
# Creating vector
x <- c(2, 3, 5, NA, 4, NA, 6)
# Calling median() function
# with NA values included
median(x, na.rm = FALSE)
# Calling median() function
# with NA values excluded
median(x, na.rm = TRUE)
輸出:
[1] NA [1] 4
相關用法
- R語言 diff()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 mad()用法及代碼示例
- R語言 rank()用法及代碼示例
- R語言 cummin()用法及代碼示例
- R語言 cummax()用法及代碼示例
- R語言 make.unique()用法及代碼示例
- R語言 replace()用法及代碼示例
- R語言 seq()用法及代碼示例
- R語言 sign()用法及代碼示例
- R語言 rep()用法及代碼示例
- R語言 append()用法及代碼示例
- R語言 charmatch()用法及代碼示例
- R語言 substring()用法及代碼示例
- R語言 str_detect()用法及代碼示例
- R語言 as.factor()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate Median of elements of a Vector in R Programming – median() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。