R Special Interest Group on Econometrics? #61
Replies: 3 comments
-
I am interested and willing to participate (I used econometrics in R mostly with gravity models), but I am not sure what exactly the objective of the group would be? |
Beta Was this translation helpful? Give feedback.
-
Thanks for enquiring @pachadotdev. The entire endeavour of statistical software review aims to be as multi- and cross-disciplinary as possible, and standards as currently written should definitely encompass the kinds of concerns you raise here. For example, many aspects of the Standards for Regression Software would ensure appropriate usage, implementation, and documentation of fixed effects estimation. Relevant standards would include:
along with a lot of the General Standards for Testing, which should ensure that algorithmic decisions of the kinds you highlight here would be clearly documented and explicitly tested. On the separate issue of a "Special Interest Group", you could delve into the discussions surrounding an "R-Spatial Working Group" at r-spatial/discuss#37, which has some very detailed considerations behing starting, organising, and funding these kinds of groups. |
Beta Was this translation helpful? Give feedback.
-
Hi @zauster @mpadge |
Beta Was this translation helpful? Give feedback.
-
Hi
IMO it makes sense to create such group. Until today, I've been very hesitant to use statistical packages besides stats:: and h2o::, but I use a lot of data.table and dplyr to clean/reshape data.
Here's a case where I found that FE estimation in R gives different results with different packages
Three or more FEs: fixest vs lfe vs base vs Stata (reghdfe)
The need to use R packages here is quite clear, the glm function with many fixed effects takes around 100 times the Stata fitting time, and fixest reports the same times as Stata.
While I have created the eflm package with some tricks to speed up the computation, this approach also breaks the robustness in some cases, and at the same time it's the only package I know that tries to be as similar to stats:: outputs.
Beta Was this translation helpful? Give feedback.
All reactions