cummin()
R语言中的函数用于计算作为参数传递的向量值的累积最小值。
用法: cummin(x)
参数:
x:数字对象
范例1:
# R program to cumulative minima
# Calling cummin() function
cummin(2:6)
cummin(-2:-6)
cummin(1.8:4.2)
输出:
[1] 2 2 2 2 2 [1] -2 -3 -4 -5 -6 [1] 1.8 1.8 1.8
范例2:
# R program to cumulative minima
# Creating vectors
x1 <- c(3, 6, 4, 2, 6, 7)
x2 <- c(-4, 6, 3)
# Calling cummin() function
cummin(x1)
cummin(x2)
输出:
[1] 3 3 3 2 2 2 [1] -4 -4 -4
因为,最小值是按递增顺序计算的,因此上面的代码显示了第一个向量的两个累积值。
相关用法
- R语言 cummax()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 cumsum()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
- R语言 pchisq()用法及代码示例
- R语言 pcauchy()用法及代码示例
- R语言 plogis()用法及代码示例
- R语言 plnorm()用法及代码示例
- R语言 pnbinom()用法及代码示例
- R语言 ppois()用法及代码示例
- R语言 pweibull()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 diff()用法及代码示例
- R语言 median()用法及代码示例
- R语言 rank()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate the Cumulative Minima of a Vector in R Programming – cummin() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。