Nothing
intervalo <- function(day, sample){
intervalo <- seq.POSIXt(from = as.POSIXct(paste(day, '00:00:00'), tz = 'UTC'),
to = as.POSIXct(paste(day, '23:59:59'), tz = 'UTC'),
by = sample)
return(intervalo)
}
fBTi <- function(BTd, sample = 'hour'){
BTi <- lapply(BTd, intervalo, sample)
BTi <- do.call(c, BTi)
return(BTi)
}
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.