许多使用x13_arima_analysis
的人之前会看到类似的事情。
>>> import statsmodels.api as sm
>>> results = sm.tsa.x13_arima_analysis(list(range(23)))
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
File "C:\Python34\lib\site-packages\statsmodels\tsa\x13.py", line 408, in x13_arima_analysis
x12path = _check_x12(x12path)
File "C:\Python34\lib\site-packages\statsmodels\tsa\x13.py", line 84, in _check_x12
raise X13NotFoundError("x12a and x13as not found on path. Give the "
statsmodels.tools.sm_exceptions.X13NotFoundError: x12a and x13as not found on path. Give the path, put them on PATH, or set the X12PATH or X13PATH environmental variable.
x13_arima_analysis
所做的第一件事就是检查x12a
或x13as
的可用性。错误诊断提供了明显的补救措施。
但是,我以前获取statsmodels-0.8.0-cp34-cp34m-win_amd64.whl
的安装文件statsmodels
似乎不提供具有这些名称的文件。 (我搜索了我为他们安装产品的整个驱动器。)
有人会碰巧知道Windows 64位二进制文件可能在哪里吗?