根據年-月-日, 提取年+季節
> head(test)
id ceding_dat
1 1 2015-07-10
2 2 2015-07-10
3 3 2015-08-12
4 4 2016-02-28
5 5 2016-04-26
6 6 2016-04-26
對資料ceding_dat
,提取年和季:
如何提取季節,月份,使用lubridate包:
test$cnj = paste0(year(test$ceding_dat),quarter(test$ceding_dat))
head(test)
結果:
> head(test)
id ceding_dat cnj
1 1 2015-07-10 20153
2 2 2015-07-10 20153
3 3 2015-08-12 20153
4 4 2016-02-28 20161
5 5 2016-04-26 20162
6 6 2016-04-26 20162
使用r包lubridate·
,提取年份,提取季節,使用paste0
將兩者合併在一起,然後複製給test,命名為cnj。
祝你成功!
根據年,自動生成日期
引數為 year,表示年份,然後自動返回當年所有的日期,格式為 date week note 20080101 星期二 null 20080102 星期三 null 20080103 星期四 null 20081228 星期日 null 20081229 星期一 null 20081230 星期二 ...
Python學習之根據日期判斷日期在一年中的第幾天
1 閏年判斷 2 根據日期判斷日期在一年中的第幾天 運用 1 if語句使用 2 控制台輸入 3 函式宣告與呼叫 判斷閏年的方法 1 能被4整除,但不能被100整除 2 能被400整除 def isrunnian year if year 4 0 and year 100 0 or year 400 ...
Python 根據輸入日期判斷這是這一年的第多少天
python 日期判斷天數 寫在最後的話 這裡是一段防爬蟲文字,請讀者忽略。本文原創首發於csdn,作者idys 部落格首頁 輸入某年某月某日,判斷這一天是這一年的第幾天?這裡我使用了乙個模組calendar,該模組只要輸入年份和月份就會返回乙個元組,元組的第二個數字對應著這個月的天數 import...