2
取兩個區間:[1,6]和[6,12]。 6號屬於第二個,但不是第一個。同樣可以在lubridate中完成嗎? (This涉及Python中的問題...)R的獨特時間間隔
library(lubridate)
date1 <- ymd(20010101); date3 <- ymd(20010103); date6 <- ymd(20010106); date12 <- ymd(20010112)
intA <- new_interval(date1, date6); intB <- new_interval(date6, date12)
date3 %within% intA
> TRUE
date3 %within% intB
> FALSE
date6 %within% intB ## I want this to be true
> TRUE
date6 %within% intA ## but this be false...
> TRUE
可以起到%以內%進行調整,以排除區間的上限?
任何幫助將不勝感激。
感謝@Gregor,你是男人! – emagar 2014-12-03 21:38:20