I'm using the statsmodels.graphics.tsaplots module to plot an ACF or a PACF graph using time series data. I've added an example plot below:
Is there any way of getting the individual values for each lag (i.e. each blue circle), as well as the corresponding value of the blue area for each lag? The reason why I need the blue area values is that sometimes the area might expand over the higher lags. Example: ACF with growing blue area
I've tried Retrieve XY data from matplotlib figure but it did not help me in this instance.
The idea for this would be to automatically check the significance of each lag (i.e. if the lag is in the blue area or not)
Any help would be appreciated :)
Thank you