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


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


quarters()R語言中的函數用於確定作為參數傳遞給它的特定日期所在的季度。

用法: quarters(date)

參數:
date:檢查日期

範例1:


# R program to find the quarter 
# of a specific date
  
# Specifying the date
date <- as.POSIXlt("2020-06-23")
date
  
# Calling quarters() function
quarters(date)

輸出:

[1] "2020-06-23 UTC"
[1] "Q2"

範例2:


# R program to find the quarter 
# of a specific date
  
# Specifying the date
date <- as.POSIXlt("1994-01-17")
date
  
# Calling quarters() function
quarters(date)

輸出:

[1] "1994-01-17 UTC"
[1] "Q1"

相關用法


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