diff --git a/pyfixest/__pycache__/fixest.cpython-310.pyc b/pyfixest/__pycache__/fixest.cpython-310.pyc index d98e2235..e6287d5a 100644 Binary files a/pyfixest/__pycache__/fixest.cpython-310.pyc and b/pyfixest/__pycache__/fixest.cpython-310.pyc differ diff --git a/pyfixest/fixest.py b/pyfixest/fixest.py index 36266f60..fb556e13 100644 --- a/pyfixest/fixest.py +++ b/pyfixest/fixest.py @@ -441,9 +441,12 @@ def vcov(self, vcov: Union[str, Dict[str, str]]) -> None: None ''' + self.vcov_log = vcov + for model in list(self.model_res.keys()): fxst = self.model_res[model] + fxst.vcov_log = vcov fxst.get_vcov(vcov=vcov) fxst.get_inference() diff --git a/pyproject.toml b/pyproject.toml index ed05f806..b531be93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyfixest" -version = "0.4.1.7" +version = "0.4.1.8" description = "Experimental draft package for high dimensional fixed effect estimation" authors = ["Alexander Fischer "] license = "MIT"