search for: bydst

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

Did you mean: ydst
2007 Mar 19
3
R4.1: seq.POSIXt, tz="AEST" (PR#9572)
...led by "our own C code". > x <- as.POSIXct("1968-02-27") # tz="AEST" > x.gmt <- as.POSIXct("1968-02-27", tz="GMT") > data.frame( GMT=seq(x.gmt, by="day", length=8), byday=seq(x, by="day", length=8), byDST=seq(x, by="DSTday", length=8)) GMT byday byDST 1 1968-02-27 1968-02-27 1968-02-27 2 1968-02-28 1968-02-28 1968-02-28 3 1968-02-29 1968-03-01 1968-03-02 4 1968-03-01 1968-03-02 1968-03-02 5 1968-03-02 1968-03-02 1968-03-02 6 1968-03-03 1968-03-03 1968-03-03 7 1968-03-04...