start
開始日と最終日を知っていますmaturity
。週末の日付を考慮せずにベクトルに日付を入力するにはどうすればよいですか? たとえば、次のように言いましょう。
> start = as.Date("2013-02-28");
> maturity = as.Date("2013-03-07");
結果として次のベクトルを取得したいと思います。
results
[1] "2013-03-01" "2013-03-04" "2013-03-05" "2013-03-06" "2013-03-07"
> start = as.Date("2013-02-28");
> maturity = as.Date("2013-03-07");
> x <- seq(start,maturity,by = 1)
> x
[1] "2013-02-28" "2013-03-01" "2013-03-02" "2013-03-03" "2013-03-04" "2013-03-05"
[7] "2013-03-06" "2013-03-07"
> x <- x[!weekdays(x) %in% c('Saturday','Sunday')]
> x
[1] "2013-02-28" "2013-03-01" "2013-03-02" "2013-03-03" "2013-03-04" "2013-03-05"
[7] "2013-03-06" "2013-03-07"
同じ結果... ?