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


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


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

相關用法


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