本文介绍了使用R中的lubridate包查找一年中的某天的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找带有lubridate的POSIXct类对象的一年中的某天.例如, 2015年12月9日是343天.
I'm looking to find the day of year for a POSIXct class object with lubridate. For example, 12-9-2015 is day 343.
使用lubridate很容易找到星期几或一个月:
It's easy to find the day of the week or month with lubridate:
> lubridate::wday("2015-12-09 04:27:56 EST", labels = T)
Wed
> lubridate::day("2015-12-09 04:27:56 EST")
9
在一年中的某一天有没有简便的方法?我已经搜索了文档和其他问题,但尚未找到答案.
Is there an easy way to do so for the day of the year? I've searched the documentation and other questions but have not (yet) found an answer.
推荐答案
正确的功能是yday
,如
lubridate::yday(Sys.time())
这篇关于使用R中的lubridate包查找一年中的某天的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!