当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 months()用法及代码示例


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"

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Determine the Month on a Specific Date in R Programming – months() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。