64

我正在尝试将一个月添加到我拥有的日期。但是到目前为止,它不可能以直接的方式进行。以下是我尝试过的。

d <- as.Date("2004-01-31")
d + 60
# [1] "2004-03-31"

添加不会有帮助,因为月份不会重叠。

seq(as.Date("2004-01-31"), by = "month", length = 2) 
# [1] "2004-01-31" "2004-03-02"

以上可能有效,但同样不是直截了当的。此外,它还增加了 30 天或其他日期,有以下问题

seq(as.Date("2004-01-31"), by = "month", length = 10) 
#  [1] "2004-01-31" "2004-03-02" "2004-03-31" "2004-05-01" "2004-05-31" "2004-07-01" "2004-07-31" "2004-08-31" "2004-10-01" "2004-10-31"

在上面,前两个日期,月份没有改变。

以下方法也失败了一个月但成功了一年

d <- as.POSIXlt(as.Date("2010-01-01"))
d$year <- d$year +1
d
# [1] "2011-01-01 UTC"
d <- as.POSIXlt(as.Date("2010-01-01"))
d$month <- d$month +1
d

错误format.POSIXlt(x, usetz = TRUE):无效的“x”参数

这样做的正确方法是什么?

4

8 回答 8

142

lubridate 的函数%m+%在不超过新月份的最后一天的情况下增加一个月。

library(lubridate)
(d <- ymd("2012-01-31"))
 1 parsed with %Y-%m-%d
[1] "2012-01-31 UTC"
d %m+% months(1)
[1] "2012-02-29 UTC"
于 2013-01-06T12:53:46.803 回答
60

当您说“将月份添加到日期”时,这是模棱两可的。

你的意思是

  1. 加30天?
  2. 将日期的月份部分增加 1?

在这两种情况下,一个简单添加的整个包似乎有点夸张。

对于第一点,当然,简单的+操作符会做:

d=as.Date('2010-01-01') 
d + 30 
#[1] "2010-01-31"

至于第二个,我将创建一个如此简单的单行函数(并且范围更广):

add.months= function(date,n) seq(date, by = paste (n, "months"), length = 2)[2]

您可以将其与任意月份一起使用,包括负月份:

add.months(d, 3)
#[1] "2010-04-01"
add.months(d, -3)
#[1] "2009-10-01"

当然,如果您只想添加并且经常添加一个月:

add.month=function(date) add.months(date,1)
add.month(d)
#[1] "2010-02-01"

如果你在 1 月 31 日加上一个月,因为 2 月 31 日没有意义,所以完成工作的最佳方法是把缺少的 3 天加到下一个月,3 月。如此正确:

add.month(as.Date("2010-01-31"))
#[1] "2010-03-03"

如果由于某些非常特殊的原因,您需要为该月的最后一天设置一个上限,它会更长一些:

add.months.ceil=function (date, n){

  #no ceiling
  nC=add.months(date, n)

  #ceiling
  day(date)=01
  C=add.months(date, n+1)-1

  #use ceiling in case of overlapping
  if(nC>C) return(C)
  return(nC)
}

像往常一样,您可以添加一个单月版本:

add.month.ceil=function(date) add.months.ceil(date,1)    

所以:

  d=as.Date('2010-01-31')
  add.month.ceil(d)
  #[1] "2010-02-28"
  d=as.Date('2010-01-21')
  add.month.ceil(d)
  #[1] "2010-02-21"

随着递减:

  d=as.Date('2010-03-31')
  add.months.ceil(d, -1)
  #[1] "2010-02-28"
  d=as.Date('2010-03-21')
  add.months.ceil(d, -1)
  #[1] "2010-02-21"

此外,您没有告诉您是否对标量或矢量解决方案感兴趣。至于后者:

add.months.v= function(date,n) as.Date(sapply(date, add.months, n), origin="1970-01-01")

注意:*applyfamily 破坏了类数据,这就是它必须重建的原因。矢量版带来:

d=c(as.Date('2010/01/01'), as.Date('2010/01/31'))
add.months.v(d,1)
[1] "2010-02-01" "2010-03-03"

希望你喜欢它))

于 2013-03-09T23:29:22.853 回答
38

Vanilla R 有一个简单的 difftime 类,但是Lubridate CRAN包可以让你做你想做的事:

require(lubridate)
d <- ymd(as.Date('2004-01-01')) %m+% months(1)
d
[1] "2004-02-01"

希望有帮助。

于 2013-01-05T07:38:34.683 回答
10

最简单的方法是将 Date 转换为 POSIXlt 格式。然后执行如下算术运算:

date_1m_fwd     <- as.POSIXlt("2010-01-01")
date_1m_fwd$mon <- date_1m_fwd$mon +1

此外,如果您想处理 data.table 中的日期列,不幸的是,不支持 POSIXlt 格式。

您仍然可以使用基本 R 代码执行添加月份,如下所示:

library(data.table)  
dt <- as.data.table(seq(as.Date("2010-01-01"), length.out=5, by="month"))  
dt[,shifted_month:=tail(seq(V1[1], length.out=length(V1)+3, by="month"),length(V1))]

希望能帮助到你。

于 2017-08-29T03:36:45.627 回答
7

"mondate"有点类似于"Date"除了n添加n月份而不是n天数:

> library(mondate)
> d <- as.Date("2004-01-31")
> as.mondate(d) + 1
mondate: timeunits="months"
[1] 2004-02-29
于 2013-03-10T01:37:36.997 回答
5

这是一个不需要安装任何软件包的功能。你给它一个Date对象(或者character它可以转换成 a Date),它会在不改变月份的日期的情况下n增加月份到那个日期(除非你登陆的月份没有足够的天数,在这种情况下它默认为返回月份的最后一天)。以防万一阅读没有意义,下面有一些示例。

函数定义

addMonth <- function(date, n = 1){
  if (n == 0){return(date)}
  if (n %% 1 != 0){stop("Input Error: argument 'n' must be an integer.")}

  # Check to make sure we have a standard Date format
  if (class(date) == "character"){date = as.Date(date)}

  # Turn the year, month, and day into numbers so we can play with them
  y = as.numeric(substr(as.character(date),1,4))
  m = as.numeric(substr(as.character(date),6,7))
  d = as.numeric(substr(as.character(date),9,10))

  # Run through the computation
  i = 0
  # Adding months
  if (n > 0){
    while (i < n){
      m = m + 1
      if (m == 13){
        m = 1
        y = y + 1
      }
      i = i + 1
    }
  }
  # Subtracting months
  else if (n < 0){
    while (i > n){
      m = m - 1
      if (m == 0){
        m = 12
        y = y - 1
      }
      i = i - 1
    }
  }

  # If past 28th day in base month, make adjustments for February
  if (d > 28 & m == 2){
      # If it's a leap year, return the 29th day
      if ((y %% 4 == 0 & y %% 100 != 0) | y %% 400 == 0){d = 29}
      # Otherwise, return the 28th day
      else{d = 28}
    }
  # If 31st day in base month but only 30 days in end month, return 30th day
  else if (d == 31){if (m %in% c(1, 3, 5, 7, 8, 10, 12) == FALSE){d = 30}}

  # Turn year, month, and day into strings and put them together to make a Date
  y = as.character(y)

  # If month is single digit, add a leading 0, otherwise leave it alone
  if (m < 10){m = paste('0', as.character(m), sep = '')}
  else{m = as.character(m)}

  # If day is single digit, add a leading 0, otherwise leave it alone
  if (d < 10){d = paste('0', as.character(d), sep = '')}
  else{d = as.character(d)}

  # Put them together and convert return the result as a Date
  return(as.Date(paste(y,'-',m,'-',d, sep = '')))
}

一些例子

添加月份

> addMonth('2014-01-31', n = 1)
[1] "2014-02-28"  # February, non-leap year
> addMonth('2014-01-31', n = 5)
[1] "2014-06-30"  # June only has 30 days, so day of month dropped to 30
> addMonth('2014-01-31', n = 24)
[1] "2016-01-31"  # Increments years when n is a multiple of 12 
> addMonth('2014-01-31', n = 25)
[1] "2016-02-29"  # February, leap year

减去月份

> addMonth('2014-01-31', n = -1)
[1] "2013-12-31"
> addMonth('2014-01-31', n = -7)
[1] "2013-06-30"
> addMonth('2014-01-31', n = -12)
[1] "2013-01-31"
> addMonth('2014-01-31', n = -23)
[1] "2012-02-29"
于 2014-07-29T22:06:11.623 回答
4
addedMonth <- seq(as.Date('2004-01-01'), length=2, by='1 month')[2]
addedQuarter <- seq(as.Date('2004-01-01'), length=2, by='1 quarter')[2]
于 2017-06-22T04:34:56.467 回答
1

我把安东尼奥的想法变成了一个具体的功能:

library(DescTools)

> AddMonths(as.Date('2004-01-01'), 1)
[1] "2004-02-01"

> AddMonths(as.Date('2004-01-31'), 1)
[1] "2004-02-29"

> AddMonths(as.Date('2004-03-30'), -1)
[1] "2004-02-29"
于 2015-04-29T22:27:13.620 回答