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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。