當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 cumprod()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate Cumulative Product of a Numeric Object in R Programming – cumprod() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。