使用 R 根据日期计算每年的周数
我有一个包含 2 个不同年份(2009 年和 2010 年)日期的数据集,并且希望每个日期都有相应的周数。
我的数据集与此类似:
anim <- c(012,023,045,098,067)
dob <- c("01-09-2009","12-09-2009","22-09-2009","10-10-2010","28-10-2010")
mydf <- data.frame(anim,dob)
mydf
anim dob
1 12 01-09-2009
2 23 12-09-2009
3 45 22-09-2009
4 98 10-10-2010
5 67 28-10-2010
我希望在第三列中有变量“周”,并为每个日期提供相应的周数。
编辑: 注意:每年第一周从 1 月 1 日开始,第二周从 1 月 8 日开始
。如有任何帮助,我们将不胜感激。
巴兹
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您对“一年中的一周”的定义
与
strftime
支持的标准不同:因此您需要根据一年中的日期来计算它数字。
Your definition of "week of year"
differs from the standard ones supported by
strftime
:So you need to compute it based on the day-of-year number.
Post 2011 Answer
lubridate
包对于此类日常任务非常简单。Post 2011 Answer
lubridate
package is straight-forward for day-to-day tasks like this.如果您想知道您感兴趣的日期和一年的第一天之间已经过去了多少周(或 7 天),无论一年的第一天是星期几,以下是解决方案(使用 lubridate 中的
floor_date
)。If you want to do how many weeks (or 7 day periods) have passed between your date of interest and the first day of the year, regardless of what day of the week it was on the first of the year, the following is a solution (using
floor_date
from lubridate).