setGeneric("seqmondate", function(from, to, ...) standardGeneric("seqmondate"))
setMethod("seqmondate", c("mondate", "mondate"), function(from, to, ...)
seq.mondate(from, to, ...))
setMethod("seqmondate", c("mondate", "missing"), function(from, ...)
seq.mondate(from, ...))
setMethod("seqmondate", c("missing", "mondate"), function(to, ...)
seq.mondate(to = to, ...))
setMethod("seqmondate", c("Date", "Date"), function(from, to, ...)
as.Date(seq(mondate(as.numeric(mondate(from))),
mondate(as.numeric(mondate(to ))),
...)
)
)
setMethod("seqmondate", c("Date", "missing"), function(from, ...)
as.Date(seq(mondate(as.numeric(mondate(from))),
...)
)
)
setMethod("seqmondate", c("missing", "Date"), function(from, to, ...)
as.Date(seq(to = mondate(as.numeric(mondate(to))),
...)
)
)
setMethod("seqmondate", c("POSIXlt", "POSIXlt"), function(from, to, ...)
structure(as.POSIXlt(seqmondate(as.Date(from), as.Date(to), ...)),
tzone = attr(from, "tzone"))
)
setMethod("seqmondate", c("POSIXlt", "missing"), function(from, to, ...)
structure(as.POSIXlt(seqmondate(as.Date(from), ...)),
tzone = attr(from, "tzone"))
)
setMethod("seqmondate", c("missing", "POSIXlt"), function(from, to, ...)
structure(as.POSIXlt(seqmondate(to = as.Date(to), ...)),
tzone = attr(to, "tzone"))
)
setMethod("seqmondate", c("POSIXct", "POSIXct"), function(from, to, ...)
as.POSIXct(seqmondate(as.POSIXlt(from), as.POSIXlt(to), ...))
)
setMethod("seqmondate", c("POSIXct", "missing"), function(from, to, ...)
as.POSIXct(seqmondate(as.POSIXlt(from), ...))
)
setMethod("seqmondate", c("missing", "POSIXct"), function(from, to, ...)
as.POSIXct(seqmondate(to = as.POSIXlt(to), ...))
)
setMethod("seqmondate", c("ANY", "ANY"), function(from, to, ...)
seqmondate(mondate(from), mondate(to), ...)
)
setMethod("seqmondate", c("ANY", "missing"), function(from, to, ...)
seqmondate(mondate(from), ...)
)
setMethod("seqmondate", c("missing", "ANY"), function(from, to, ...)
seqmondate(to = mondate(to), ...)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.