Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Regression in 3 dimensions

    I'm reading an article in which the following regression model is estimated:
    Yict= b0 + b1 Xict + PIit +RHOci + ZETAct + uict ,
    where i,c,t denote the industry sector, the country, and time, respectively. The authors claim that this panel approach includes industry-year (PIit), country-sector (RHOci), and country-year(ZETAct) fixed effects.
    What kind of regression model is this? Could you suggest any reference about it? Why is the intercept b0 included if we have fixed effects?
    Is it feasible to estimate a regression model like this:
    Yict= b1 Xic,t-1 + b2 Xict + b3 Hct + b4 Kct + PIit +RHOci + ZETAct+ uict
    where I added the lagged value of the continuous explanatory variable X, and I added two new predictors. These predictors consist of a categorical variable (Hct ) and a continuous variable (Kct) both of which remain constant across county-industries.
    Any references about a suitable STATA command?
    Last edited by Frank Giaquinto; 11 Apr 2024, 03:48.

  • #2
    Clearly, the authors have data at the firm level. As a referee, I would expect them to clarify why their model lacks firm effects to accommodate firm-level heterogeneity. It's possible that the authors do not have panel data at the firm level but instead have data on multiple firms spanning various industries across several years (pooled cross-sections). In such a scenario, I would classify their model as Pooled Ordinary Least Squares (POLS) with industry-year, country-sector, and country-year dummies. However, they would need to introduce an additional index on their equation for firms. Since the authors have firm-level data, the intercept can be estimated. Generally, including an intercept in a fixed effects model is feasible, but estimating such an intercept separately from the fixed effects requires imposing certain constraints (see https://www.stata.com/support/faqs/s...effects-model/). Therefore, my guess is that the authors are stressing the term "fixed effects" throughout their analysis due to its association with robustness in panel data, to sell their paper.

    To estimate the authors' model, one could use the reghdfe command from from https://github.com/sergiocorreia/reghdfe, absorbing the various dummies as follows:

    Code:
    reghdfe y x1 ... xn, absorb(industry#year country#sector country#year)
    However, if the dataset consists of firm-level panel data, the authors would need to justify why their model is better than the standard two-way Fixed Effects model:

    Code:
    reghdfe y x1 ... xn, absorb(firm year) vce(cluster(firm))
    Last edited by Andrew Musau; 11 Apr 2024, 06:14.

    Comment


    • #3
      Dear Professor, I greatly appreciate your prompt reply.
      To provide further clarity (and my apologies for the oversight), the authors employ input-output tables to track the flow of outputs utilized as intermediate inputs by manufacturing industries across various countries. Consequently, the lowest level of aggregation observed is at the industry-sector level (denoted by 'i'), and different industry-sectors are observed at various time points for multiple countries ('c'). Specifically, we have t=1,2,...,30; i=1,2,...,17; c=1,2,...,76.
      In such a scenario, is it problematic to utilize predictors that vary across countries over time (denoted by 'c' and 't') but remain constant across industries ('i'), namely, using variables indexed by 'ct' rather than 'ict'?
      Last edited by Frank Giaquinto; 11 Apr 2024, 06:20.

      Comment


      • #4
        Originally posted by Frank Giaquinto View Post
        Consequently, the lowest level of aggregation observed is at the industry-sector level (denoted by 'i')
        If that were the case, then an observation is an industry-year combination, and having industry-year dummies in the model would mean that they are including a dummy for each observation, which is impossible. As I said, my suspicion is that an observation is at a lower level of aggregation.

        Comment


        • #5
          I see. If I would do something similar, I might use single dummies at industry, country, and time levels, that is, deltai , gammac, taut, right?
          In such a scenario, is it problematic to utilize a predictor that varies across countries over time (denoted by 'c' and 't') but remains constant across industries ('i'), namely, using a predictor indexed by 'ct' rather than 'ict'?
          Could you suggest any reference dealing with such panels and considering the fact that t=1,2,...,30; i=1,2,...,17; c=1,2,...,76
          Thanks for the help
          Last edited by Frank Giaquinto; 12 Apr 2024, 04:07.

          Comment


          • #6
            It's not an issue because you do not have fixed effects at the unit level. As I stated in #2, your model is POLS and both within and between variation are used. Unless you can demonstrate the absence of heterogeneity at the unit level, any results you obtain are descriptive rather than causal. Standard panel data econometrics textbooks discuss POLS and generally do not recommend it, except if the RHS variables capture the heterogeneity.

            Comment

            Working...
            X