cumprod()
R语言中的函数用于计算作为参数传递的向量的累积乘积。
用法: cumprod(x)
参数:
x:数字对象
范例1:
# R program to illustrate
# the use of cumprod() Function
# Calling cumprod() Function
cumprod(1:4)
cumprod(-1:-6)
输出:
[1] 1 2 6 24 [1] -1 2 -6 24 -120 720
范例2:
# R program to illustrate
# the use of cumprod() Function
# Creating Vectors
x1 <- c(2, 4, 5, 7)
x2 <- c(2.4, 5.6, 3.4)
# Calling cumprod() Function
cumprod(x1)
cumprod(x2)
输出:
[1] 2 8 40 280 [1] 2.400 13.440 45.696
相关用法
- R语言 cumsum()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate Cumulative Product of a Numeric Object in R Programming – cumprod() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。