min()
R语言中的函数用于查找对象中存在的最小元素。这个对象可以是一个向量、一个列表、一个矩阵、一个 DataFrame 等。
用法: min(object, na.rm)
参数:
object:向量、矩阵、列表、 DataFrame 等。
名称:删除 NA 元素的布尔值。
范例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
相关用法
- R语言 max()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 nrow()用法及代码示例
- R语言 get()用法及代码示例
- R语言 names()用法及代码示例
- R语言 mode()用法及代码示例
- R语言 which.min()用法及代码示例
- R语言 range()用法及代码示例
- R语言 max.col()用法及代码示例
- 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 Minimum element of an Object in R Programming – min() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。