We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example:
import pyfixest as pf import numpy as np from pyfixest.utils import get_data fixest = pf.Fixest(data = data) fixest.feols("Y~X1 | csw0(X2, X3)", vcov = {'CRV1':'id'}) fixest.summary() # ### # # --- # ### # # Dep. var.: Y # Inference: {'CRV1': 'id'} # Observations: 998 # # Estimate Std. Error t value Pr(>|t|) # Intercept 6.648203 0.220649 30.130262 0.00000 # X1 -0.141200 0.211081 -0.668937 0.50369 # --- # ### # # Fixed effects: X2 # Dep. var.: Y # Inference: {'CRV1': 'id'} # Observations: 998 # # Estimate Std. Error t value Pr(>|t|) # X1 -0.142274 0.210556 -0.675707 0.499383 # --- # ### # # Fixed effects: X2+X3 # Dep. var.: Y # Inference: {'CRV1': 'id'} # Observations: 998 # # Estimate Std. Error t value Pr(>|t|) # X1 -0.096317 0.204801 -0.470296 0.638247 fixest.vcov({'CRV3':'group_id'}).summary() >>> fixest.vcov({'CRV3':'group_id'}).summary() # ### # # --- # ### # # Dep. var.: Y # Inference: {'CRV1': 'id'} # Observations: 998 # # Estimate Std. Error t value Pr(>|t|) # Intercept 6.648203 0.229614 28.953831 0.000000 # X1 -0.141200 0.207516 -0.680428 0.502745 # --- # ### # # Fixed effects: X2 # Dep. var.: Y # Inference: {'CRV1': 'id'} # Observations: 998 # # Estimate Std. Error t value Pr(>|t|) # X1 -0.142274 0.20774 -0.684867 0.49999 # --- # ### # # Fixed effects: X2+X3 # Dep. var.: Y # Inference: {'CRV1': 'id'} # Observations: 998 # # Estimate Std. Error t value Pr(>|t|) # X1 -0.096317 0.206282 -0.46692 0.644768 #
The text was updated successfully, but these errors were encountered:
Merge pull request #73 from s3alfisc/dev
6e88d2c
update inference log in vcov method closing #61
Successfully merging a pull request may close this issue.
Example:
The text was updated successfully, but these errors were encountered: