R编程中获取对象的最小元素——min()函数
R 语言中的min()
函数用于查找对象中存在的最小元素。这个对象可以是一个向量、一个列表、一个矩阵、一个数据框等。
Syntax: min(object, na.rm)
Parameters:
object: Vector, matrix, list, data frame, etc.
na.rm: Boolean value to remove NA element.
示例 1:
# R program to illustrate
# the use of min() function
# Creating vectors
x1 <- c(1, 2, 3, 4, 5, 6, 7, 8, 9)
x2 <- c(4, 2, 8, NA, 11)
# Finding minimum element
min(x1)
min(x2, na.rm = FALSE)
min(x2, na.rm = TRUE)
输出:
[1] 1
[1] NA
[1] 2
示例 2:
# R program to illustrate
# the use of min() function
# Creating a matrix
arr = array(2:13, dim = c(2, 3, 2))
print(arr)
# Using min() function
min(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] 2