You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyFixest implements all options that fixest::ssc() offers, with the exception of fixef.K = "nested". I will add this feature in the future. Please let me know if you think this is high priority - as of now, I do not consider it too important.
The text was updated successfully, but these errors were encountered:
Why do standard errors slightly differ between
PyFixest
andfixest
? The answer is "different small sample correction defaults".In Python, we get
whereas in R, we have
fixest::feols()
produces a standard error of0.068891
, butPyFixest.feols()
reports a standard error of0.068857
.To reproduce
PyFixest
results in fixest, you need to usefixest::ssc(fixef.K = "none")
instead of its default "nested".Now standard errors, t statistics, and p values match exactly between the two libraries.
See the fixest vignette on standard errors for details.
PyFixest
implements all options thatfixest::ssc()
offers, with the exception offixef.K = "nested"
. I will add this feature in the future. Please let me know if you think this is high priority - as of now, I do not consider it too important.The text was updated successfully, but these errors were encountered: