mean()
R語言中的函數用於計算作為參數傳遞給它的數字向量元素的算術平均值。
用法: mean(x, na.rm)
參數:
x:數字向量
名稱:忽略 NA 值的布爾值
範例1:
# R program to calculate
# Arithmetic mean of a vector
# Creating a numeric vector
x1 <- c(1, 2, 3, 4, 5, 6)
x2 <-c(1.2, 2.3, 3.4, 4.5)
x3 <- c(-1, -2, -3, -4, -5, -6)
# Calling mean() function
mean(x1)
mean(x2)
mean(x3)
輸出:
[1] 3.5 [1] 2.85 [1] -3.5
範例2:
# R program to calculate
# Arithmetic mean of a vector
# Creating a numeric vector
x1 <- c(1, 2, 3, NA, 5, NA, NA)
# Calling mean() function
# including NA values
mean(x1, na.rm = FALSE)
# Calling mean() function
# excluding NA values
mean(x1, na.rm = TRUE)
輸出:
[1] NA [1] 2.75
相關用法
- R語言 weighted.mean()用法及代碼示例
- R語言 colMeans()用法及代碼示例
- R語言 rowMeans()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate Arithmetic mean in R Programming – mean() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。