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


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


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

相關用法


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