Closed jsr-p closed 10 months ago
Merged, thanks! I've just moved _merged_dicts
to starlib
in 4ee765002f67968047a2f4e096a8250a1795ce1c as it is potentially useful more in general.
Merged, thanks! I've just moved
_merged_dicts
tostarlib
in 4ee7650 as it is potentially useful more in general.
My pleasure, thanks!
I would have used the dict1 | dict2
way of merging dicts from pep584; but this is not compatible with python 3.8 and earlier (and statsmodels is supporting >= python 3.8
); that's the reason for the extra function :smile:
I have extended the support for panel models from
linearmodels
to also handle the second stage results from IV2SLS models fromlinearmodels
. Moreover, I have included an example in theexample.ipynb
notebook.What is left to be done is to written as
TODO:
inlinearmodels.py
inside thetranslators
module. One of those is to also handle the first stage results.