我对R还是很陌生,我一直在尝试在两个特定POSIXct日期时间限制之间生成日期时间序列(从2018-09-20 09:42:15到2018-10-19 11:57:55)。我希望序列中的每个条目都间隔5秒,但我无法做到这一点。外面有人可以帮助我解决这个问题吗?
祝一切顺利!
#Trial 1
timerange1 <- "20180920 094215/20181019 115755"
seqMinute <- format(timeBasedSeq(timerange1), "%H:%M:%S")
#did not work and is the closest I've gotten to any good result
#What I wanted:
'2018-09-20 09:42:15' '2018-09-20 09:42:20'...'2018-10-19 11:57:55'