我想生成一个时间序列,其中包含以下所有业务日期:
startDate = "1990-01-01"
endDate = "1990-12-31"
例如“1990-01-01”,“1990-01-02”,......
答案 0 :(得分:14)
@csgillespie:chron
提供函数is.weekend
:
days = seq(as.Date("1990-01-01"), as.Date("1990-12-31"), by="1 day")
library(chron)
weekDays = days[!is.weekend(days)]
## let's check the result with the function weekdays
weekdays(weekDays)
此外,如果没有chron
使用format
:
isWeekend <- function(x) {format(x, '%w') %in% c(0, 6)}
weekDays2 = days[!isWeekend(days)]
答案 1 :(得分:5)
您可以使用seq
命令。例如,
##Specify you want 10 dates starting on 1990-01-01
R> seq(as.Date("1990-01-01"), length.out=10, by="1 day")
[1] "1990-01-01" "1990-01-02" "1990-01-03" "1990-01-04" "1990-01-05"
[6] "1990-01-06" "1990-01-07" "1990-01-08" "1990-01-09" "1990-01-10"
或
##Specify the start and end with increment
R> seq(as.Date("1990-01-01"), as.Date("1990-01-10"), by="1 day")
[1] "1990-01-01" "1990-01-02" "1990-01-03" "1990-01-04" "1990-01-05"
[6] "1990-01-06" "1990-01-07" "1990-01-08" "1990-01-09" "1990-01-10"
要了解工作日,您可以使用chron
库:
days = seq(as.Date("1990-01-01"), as.Date("1990-12-31"), by="1 day")
library(chron)
weekDays = days[!is.weekend(days)]
答案 2 :(得分:2)
有一个名为base
的{{1}}函数。
?weekdays
但是,由于日期的实际名称将是特定于语言环境的,因此请务必正确设置。
请注意,startDate = "1990-01-01"
endDate = "1990-12-31"
x <- seq(as.Date(startDate), to = as.Date(endDate), by="1 day")
x[!weekdays(x) %in% c("Sunday", "Saturday")]
只是weekdays
的包装器。有关格式代码的详细信息,请参阅format(x, "%A")
。