Open jasepark2 opened 5 years ago
after modification it works well upto page 3 but I had another bug on prediction/forecasts due to depreciation of ix and I modified .ix to .loc but the plot still looks no lower and upper bound.
Thanks for this note.
Third bug happened when I tried Metropolis-Hastings-ARIMA (1,1) and for some reason I had problem with installation with pymc nonetheless of my successful records on installation with pip.
That's interesting, I don't know why that would be. Perhaps you installed pymc3 instead, or the pip
you used to install the package isn't the one associated with the python
you're actually using?
My last bug was found at the last box titled "Construct the predictions / forecasts" This is same as my second bug and I had no lower and upper bound line on my plot and followings are error message for your information.
My guess would be that the fredapi.Fred
function you used to get the data doesn't set the name of the series the way that pandas_datareader
does. You could replace cpi = fred.get_series('CPIAUCNS',"1971-01","2016-12")
with cpi = fred.get_series('CPIAUCNS',"1971-01","2016-12").rename('CPIAUCNS')
and then the lower and upper bound lines should work.
Command "python setup.py egg_info" failed with error code 1 in C:\Users\JASE\AppData\Local\Temp\pip-install-gqu0u1gr\pymc\
I had every single check on google but I finally failed to find the solution.
Anyway, Happy new year and keep providing us your excellent arts.
after modification it works well upto page 3 but I had another bug on prediction/forecasts due to depreciation of ix and I modified .ix to .loc but the plot still looks no lower and upper bound.
Third bug happened when I tried Metropolis-Hastings-ARIMA (1,1) and for some reason I had problem with installation with pymc nonetheless of my successful records on installation with pip.
However, Gibbs codes run well.
My last bug was found at the last box titled "Construct the predictions / forecasts" This is same as my second bug and I had no lower and upper bound line on my plot and followings are error message for your information.
Happy New Year and thanks for your excellent implementation on MCMC and TSA.
KeyError Traceback (most recent call last) C:\Anaconda3\lib\site-packages\pandas\core\indexes\base.py in get_loc(self, key, method, tolerance) 3062 try: -> 3063 return self._engine.get_loc(key) 3064 except KeyError:
pandas_libs\index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas_libs\index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas_libs\hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
pandas_libs\hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: 'lower CPIAUCNS'
During handling of the above exception, another exception occurred:
KeyError Traceback (most recent call last)