R语言中的mean函数用于计算向量或数组的平均值。
语法:mean(x, trim = 0, na.rm = FALSE)
参数说明:
示例:
# 计算向量的平均值
x <- c(1, 2, 3, 4, 5)
mean(x) # 输出结果为3
# 计算数组的平均值
arr <- array(c(1, 2, 3, 4, 5), dim = c(5, 1))
mean(arr) # 输出结果为3
# 删除极值计算平均值
mean(x, trim = 0.2) # 输出结果为3
# 删除缺失值计算平均值
x <- c(1, 2, 3, NA, 5)
mean(x, na.rm = TRUE) # 输出结果为2.75
注意:mean函数只能计算数值型向量或数组的平均值,对于非数值型的数据类型,需要先进行转换。