R 語言中的 rowMeans() 函數用於找出 DataFrame 、矩陣或數組的每一行的均值。
用法: rowMeans(data)
參數:
data: DataFrame 、數組或矩陣
例子1
# R program to illustrate
# rowMean function
# Create example values
# Set seed
set.seed(1234)
# Create example data
data <- data.frame(matrix(round(runif(12, 2, 20)),
nrow = 4, ncol = 3))
# Print data
print(rowMeans(data))
輸出:
[1] 11.666667 12.666667 9.666667 10.333333
範例2:
# R program to illustrate
# rowMean function
# Create example data with NA
data_na <- data.frame(matrix(round(runif(12, 2, 20)),
nrow = 4, ncol = 3))
data_na[rbinom(length(data_na), 1, 0.3) == 1] <- NA
data_na <- as.data.frame(data_na)
print(rowMeans(data_na, na.rm = TRUE))
輸出:
[1] 3 16 9 3
相關用法
- R語言 mean()用法及代碼示例
- R語言 weighted.mean()用法及代碼示例
- R語言 colMeans()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 cumsum()用法及代碼示例
- R語言 max.col()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 row()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 cos()用法及代碼示例
- R語言 cosh()用法及代碼示例
- R語言 sin()用法及代碼示例
- R語言 sinh()用法及代碼示例
注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Calculate the Mean of each Row of an Object in R Programming – rowMeans() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。