R语言 确定特定日期所在的季度 – quarters() 函数
R语言中的 quarters() 函数用于确定作为参数传递给它的特定日期所在的季度。
语法: 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"