Collection of plot functionalities for time series analysis. The available plots are:
acf: Auto-Correlation plotcandle: Candelstick plot for stock pricesccf: Cross-Correlation plotdplot: Decomposition plot for Data, Trend, Seasonality and Remainder.fplot: Multivariate forecasting plots with prediction intervals.pacf: Partial Auto-Correlation plotsplot: Seasonal plot, similar tomonthplotin R.
using ForecastPlots
using RCall, Smoothers
R"x = as.numeric(co2)"
@rget x
dplot(stl(x,12))
