search for: myweekday

Displaying 1 result from an estimated 1 matches for "myweekday".

Did you mean: myweekdays
2010 Oct 04
2
Generating weekdays only
Dear all, can anyone please tell me how to generate a sequence of days continuously, however without considering weekends i.e. Saturday and Sunday? I am aware of following code: > seq(as.Date("2010-01-01"), as.Date("2010-02-01"), by="1 day")  [1] "2010-01-01" "2010-01-02" "2010-01-03" "2010-01-04" "2010-01-05"