我正在努力学习润滑。lubridate 文档显示:
date <- ceiling_date(date, "month") - days(1)
[1] "2010-05-31 UTC
用于日期算术。但如果我尝试
mytoday <- now()
first_of_month <- floor_date(mytoday, "month")
first_of_month_last_year <- first_of_month - years(1)
使用日期算术来获得一年前的第一个月我收到一条错误消息
Warning message:
Incompatible methods ("-.POSIXt", "Ops.ordered") for "-"
任何想法我做错了什么?谢谢。