New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: State space models #2250
ENH: State space models #2250
Conversation
… double precision, complex, and double precision complex.
…g symmetric matrices (dsymm) for double precision reals.
… symmetric matrix multiplication.
… by *gemm calls for now.
This matrix is useful for smoothers.
…l state error term.
… double precision, complex, and double precision complex.
…g symmetric matrices (dsymm) for double precision reals.
… symmetric matrix multiplication.
- Removes *args - Replaces **kwargs where appropriate - Improved parameter documentation, including **kwargs where it is used.
merging this Thanks to Chad and everyone that helped and reviewed |
@josef-pkt @ChadFulton FWIW this has broken Travis with Cythonize errors. |
This appears to be an issue with cython 0.22. It built fine on cython 0.21.2 on my machine. |
@bashtage where do you see those errors? |
Cython was updated on Anaconda in the last couple of hours. Maybe these should be Also reasonably likely Cython is broken. |
That explains why it didn't fail a few hours ago.
something like this for indices. |
Simple fix, which I will submit a PR for in a sec. |
Adds state space model estimation via a Cython Kalman filter implementation along with Python wrappers and an SARIMAX estimation class.
See #1698 for development details, discussion.