range()
R语言中的函数用于获取作为参数传递给它的向量的最小值和最大值。
用法: range(x, na.rm, finite)
参数:
x:数字向量
名称:删除 NA 的布尔值
finite:排除非有限元素的布尔值
范例1:
# R program to find the
# minimum and maximum element of a vector
# Creating a vector
x <- c(8, 2, 5, 4, 9, 6, 54, 18)
# Calling range() function
range(x)
输出:
[1] 2 54
范例2:
# R program to find the
# minimum and maximum element of a vector
# Creating a vector
x <- c(8, 2, Inf, 5, 4, NA, 9, 54, 18)
# Calling range() function
range(x)
# Calling range() function
# excluding NA values
range(x, na.rm = TRUE)
# Calling range() function
# excluding finite values
range(x, na.rm = TRUE, finite = TRUE)
输出:
[1] NA NA [1] 2 Inf [1] 2 54
相关用法
- R语言 as.vector()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 structure()用法及代码示例
- R语言 sign()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 max()用法及代码示例
- R语言 max.col()用法及代码示例
- R语言 min()用法及代码示例
- R语言 which.max()用法及代码示例
- R语言 which.min()用法及代码示例
- R语言 seq.int()用法及代码示例
- R语言 optimize()用法及代码示例
- R语言 make.unique()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 substring()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Get the Minimum and Maximum element of a Vector in R Programming – range() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。