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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。