cumsum()
R语言中的函数用于计算作为参数传递的向量的累积和。
用法: cumsum(x)
参数:
x:数字对象
范例1:
# R program to illustrate
# the use of cumsum() Function
# Calling cumsum() Function
cumsum(1:4)
cumsum(-1:-6)
输出:
[1] 1 3 6 10 [1] -1 -3 -6 -10 -15 -21
范例2:
# R program to illustrate
# the use of cumsum() Function
# Creating Vectors
x1 <- c(2, 4, 5, 7)
x2 <- c(2.4, 5.6, 3.4)
# Calling cumsum() Function
cumsum(x1)
cumsum(x2)
输出:
[1] 2 6 11 18 [1] 2.4 8.0 11.4
相关用法
- R语言 cumprod()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R语言 cummin()用法及代码示例
- R语言 cummax()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
- R语言 as.character()用法及代码示例
- R语言 pchisq()用法及代码示例
- R语言 pcauchy()用法及代码示例
- R语言 plogis()用法及代码示例
- R语言 plnorm()用法及代码示例
- R语言 pnbinom()用法及代码示例
- R语言 ppois()用法及代码示例
- R语言 pweibull()用法及代码示例
- R语言 rowMeans()用法及代码示例
- R语言 between()用法及代码示例
- R语言 atanh()用法及代码示例
- R语言 asinh()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate Cumulative Sum of a Numeric Object in R Programming – cumsum() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。