Reputation: 265
Im looking for the name of the library capable of making this plot.
The forecasting bit is I'm what I'm interested. Is it Forecast library?
Thanks.
Upvotes: 0
Views: 75
Reputation: 1465
Yes, the time-series plot is from the forecast library. You get that sort of plot when you plot a forecast object
. Look at ?forecast
. For example:
install.packages('forecast')
library(forecast)
fit <- StructTS(WWWusage,"level")
plot(forecast(fit))
The rest of the fancy stuff i.e. interactivity is most likely shiny
magic, but I think you are interested only in the main plot.
Upvotes: 2