Nothing
if (!isGeneric("endTime"))
setGeneric("endTime", function(x, ...)
standardGeneric("endTime"))
if (!isGeneric("endTime<-"))
setGeneric("endTime<-", function(x, value)
standardGeneric("endTime<-"))
setMethod("endTime", "ST", function(x, ...) x@endTime)
setReplaceMethod("endTime", c("ST", "POSIXct"), # including xts
function(x, value) {
stopifnot(length(value) == dim(x)[2])
stopifnot(any(value < index(x@time)))
x@endTime = value
x
}
)
setReplaceMethod("endTime", c("ST", "xts"), # including xts
function(x, value) {
endTime(x) = index(x)
x
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.