Nothing
add_time_to_weather_data <- function(drivers)
{
if ("doy" %in% names(drivers) &&
"hour" %in% names(drivers) &&
!"time" %in% names(drivers))
{
day_fraction <- drivers$hour / 24.0
drivers$time <- drivers$doy + day_fraction
}
drivers
}
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.