cummax()
R语言中的函数用于计算作为参数传递的向量值的累积最大值。
用法: cummax(x)
参数:
x:数字对象
范例1:
# R program to cumulative maxima
# Calling cummax() function
cummax(6:2)
cummax(-2:-6)
cummax(3.8:1.2)
输出:
[1] 6 6 6 6 6 [1] -2 -2 -2 -2 -2 [1] 3.8 3.8 3.8
范例2:
# R program to cumulative maxima
# Creating vectors
x1 <- c(5, 3, 2, 6, 3, 4)
x2 <- c(-4, 6, 3)
# Calling cummax() function
cummax(x1)
cummax(x2)
输出:
[1] 5 5 5 6 6 6 [1] -4 6 6
因为,最大值是按降序计算值的,因此上面的代码显示了向量的两个累积值。
相关用法
- R语言 cummin()用法及代码示例
- 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 Maxima of a Vector in R Programming – cummax() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。