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"
相關用法
- R語言 weekdays()用法及代碼示例
- R語言 months()用法及代碼示例
- R語言 as.Date()用法及代碼示例
- R語言 round()用法及代碼示例
- R語言 select()用法及代碼示例
- R語言 strptime()用法及代碼示例
- R語言 strftime()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 cospi()用法及代碼示例
- R語言 sinpi()用法及代碼示例
- R語言 tanpi()用法及代碼示例
- R語言 which.min()用法及代碼示例
- R語言 which.max()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Determine the Quarter in which the Specific Date lies in R Programming – quarters() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。