months()
R語言中的函數用於確定作為參數傳遞給它的特定日期的月份。
用法: months(date, abbreviate)
參數:
date:檢查日期
abbreviate:布爾值來縮寫月份
範例1:
# R program to find the month
# on a specific date
# Specifying the date
date <- as.POSIXlt("2020-06-23")
date
# Calling months() function
months(date)
輸出:
[1] "2020-06-23 UTC" [1] "June"
範例2:
# R program to find the month
# on a specific date
# Specifying the date
date <- as.POSIXlt("1994-01-17")
date
# Calling months() function
months(date, abbreviate = TRUE)
輸出:
[1] "1994-01-17 UTC" [1] "Jan"
相關用法
- R語言 weekdays()用法及代碼示例
- R語言 quarters()用法及代碼示例
- R語言 as.Date()用法及代碼示例
- R語言 round()用法及代碼示例
- R語言 select()用法及代碼示例
- R語言 strptime()用法及代碼示例
- R語言 strftime()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Determine the Month on a Specific Date in R Programming – months() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。