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


R lubridate quarter 獲取日期時間的財政季度和學期

季度將一年分為四分之一。學期將一年分為兩半。

用法

quarter(
  x,
  type = "quarter",
  fiscal_start = 1,
  with_year = identical(type, "year.quarter")
)

semester(x, with_year = FALSE)

參數

x

POSIXct、POSIXlt、Date、chron、yearmon、yearqtr、zoo、zooreg、timeDate、xts、its、ti、jul、timeSeries、fts 類的日期時間對象或可以使用 as.POSIXlt 轉換的任何其他對象

type

該季度返回的格式。可以是 "quarter" - 返回數字季度(默認)、"year.quarter" 返回小數數字year.quarter、"date_first" 或 "date_last" 之一,返回季度開始結束時的日期。

fiscal_start

表示會計年度開始月份的數字。

with_year

邏輯指示是否包含季度或學期(已棄用;改用type 參數)。

如果 type 參數是 date_firstdate_last,則為 POSIXct 類的數值或向量

例子

x <- ymd(c("2012-03-26", "2012-05-04", "2012-09-23", "2012-12-31"))
quarter(x)
#> [1] 1 2 3 4
quarter(x, type = "year.quarter")
#> [1] 2012.1 2012.2 2012.3 2012.4
quarter(x, type = "year.quarter", fiscal_start = 11)
#> [1] 2012.2 2012.3 2012.4 2013.1
quarter(x, type = "date_first", fiscal_start = 11)
#> [1] "2012-02-01" "2012-05-01" "2012-08-01" "2012-11-01"
quarter(x, type = "date_last", fiscal_start = 11)
#> [1] "2012-04-30" "2012-07-31" "2012-10-31" "2013-01-31"
semester(x)
#> [1] 1 1 2 2
semester(x, with_year = TRUE)
#> [1] 2012.1 2012.1 2012.2 2012.2

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Get the fiscal quarter and semester of a date-time。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。