Hi, I have a question below:
Create a sequence of class Date that starts from September 1, 2020 and ends on September 30, has all the days, but omits weekend days.
I have all days in September 2020, but do not know how to remove weekends. I just start learning R, can anyone explain how to get that part? Thank you.
dts = seq(as.Date("2000-09-01"),
by = "day",
length.out = 30,
)