max()
R語言中的函數用於查找對象中存在的最大元素。這個對象可以是一個向量、一個列表、一個矩陣、一個 DataFrame 等。
用法: max(object, na.rm)
參數:
object:向量、矩陣、列表、 DataFrame 等。
名稱:刪除 NA 元素的布爾值。
範例1:
# R program to illustrate
# the use of max() function
# Creating vectors
x1 <- c(1, 2, 3, 4, 5, 6, 7, 8, 9)
x2 <- c(1, 4, 2, 8, NA, 11)
# Finding Maximum element
max(x1)
max(x2, na.rm = FALSE)
max(x2, na.rm = TRUE)
輸出:
[1] 9 [1] NA [1] 11
範例2:
# R program to illustrate
# the use of max() function
# Creating a matrix
arr = array(2:13, dim = c(2, 3, 2))
print(arr)
# Using max() function
max(arr)
輸出:
,, 1 [, 1] [, 2] [, 3] [1, ] 2 4 6 [2, ] 3 5 7,, 2 [, 1] [, 2] [, 3] [1, ] 8 10 12 [2, ] 9 11 13 [1] 13
相關用法
- R語言 max.col()用法及代碼示例
- R語言 min()用法及代碼示例
- R語言 which.max()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 nrow()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 names()用法及代碼示例
- R語言 mode()用法及代碼示例
- R語言 range()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.factor()用法及代碼示例
- R語言 unique()用法及代碼示例
- R語言 str()用法及代碼示例
- R語言 cumsum()用法及代碼示例
- R語言 order()用法及代碼示例
- R語言 rowMeans()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Get the Maximum element of an Object in R Programming – max() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。