我正在處理一個只有年份和月份組件的月份變量data.frame。我的部分數據如下:lubridate是否具有與動物園的yearmon功能類似的功能?
month DIV MKTP
1 1941-12 0.005752218 -4.87
2 1942-01 0.005767111 0.79
3 1942-02 0.005781771 -2.46
4 1942-03 0.005859665 -6.58
5 1942-04 0.005906924 -4.37
6 1942-05 0.005890041 5.94
7 1942-06 0.005941640 2.69
8 1942-07 0.005962464 3.51
9 1942-08 0.005936732 1.80
10 1942-09 0.006007593 2.61
我想將month變量轉換爲子日期格式,用於子目的。我的代碼如下:
require(zoo,dplyr)
df %>%
mutate(month = as.yearmon(month)) %>%
filter(month >= as.yearmon("1942-3") & month <= as.yearmon("1942-8"))
我想知道,如果lubridate封裝具有相似的功能yearmon,可以採取年份和月份的組合輸入。
我只是修改我的代碼,使之適用於例如 –