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


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


cummax()R語言中的函數用於計算作為參數傳遞的向量值的累積最大值。

用法: cummax(x)

參數:
x:數字對象

範例1:


# R program to cumulative maxima
  
# Calling cummax() function
cummax(6:2)
cummax(-2:-6)
cummax(3.8:1.2)

輸出:



[1] 6 6 6 6 6
[1] -2 -2 -2 -2 -2
[1] 3.8 3.8 3.8

範例2:


# R program to cumulative maxima
  
# Creating vectors
x1 <- c(5, 3, 2, 6, 3, 4)
x2 <- c(-4, 6, 3)
  
# Calling cummax() function
cummax(x1)
cummax(x2)

輸出:

[1] 5 5 5 6 6 6
[1] -4  6  6

因為,最大值是按降序計算值的,因此上麵的代碼顯示了向量的兩個累積值。

相關用法


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