if (FALSE) {
data("Callcenter") # Univariate FTS example
plotly_funts(Callcenter)
plotly_funts(Callcenter,
main = "Call Center Data Line Plot",
xticklabels = list(c("00:00", "06:00", "12:00", "18:00", "24:00")),
xticklocs = list(c(1, 60, 120, 180, 240))
)
plotly_funts(Callcenter, type = "3Dline", main = "Callcenter Data")
plotly_funts(Callcenter, type = "3Dsurface", main = "Callcenter Data")
plotly_funts(Callcenter, type = "heatmap", main = "Callcenter Data")
data("Montana") # Multivariate FTS example
plotly_funts(Montana[1:100],
main = c("Temperature Curves", "NDVI Images"),
color_palette = "RdYlGn",
xticklabels = list(
c("00:00", "06:00", "12:00", "18:00", "24:00"),
c("113.40\u00B0 W", "113.30\u00B0 W")
),
xticklocs = list(c(1, 6, 12, 18, 24), c(1, 33)),
yticklabels = list(NA, c("48.70\u00B0 N", "48.77\u00B0 N")),
yticklocs = list(NA, c(1, 33))
)
}
Run the code above in your browser using DataLab