- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
This is my first time posting.
I got a request from a journal reviewer to use a two-way clustering fixed effect model.
I tried a few methods by searching the SAS community and various documents, but I could not find a clear solution.
The dependent variable of my data is "firm insolvency(FI, 1 or 0)".
The independent variables are financial variables.
The fixed effects are year(YEAR) and industry(IND).
The cluster is year(YEAR) and firms(FIRM).
I tried the SURVEYLOGISTIC code as follows.
PROC SURVEYLOGISTIC DATA = data;
CLUSTER YEAR FIRM;
CLASS YEAR IND ;
MODEL FI(EVENT='1') = SIZE MTB LEV LOSS OCF YEAR IND;
RUN;
The results are the same whether or not the CLUSTER statement is applied. So I guess I am doing it wrong.
Can anyone help me do a two-way clustering in fixed-effect logistic regression?
Moreover, "PROC LOGISTIC" results shows "Wald Chi-sqaure". But, "PROC SURVEYLOGISTIC" only shows "t-values".
How can I get the "Wald Chi-sqaure" from "PROC SURVEYLOGISTIC"?
Also, how does the code change when it is a two-way clustering in fixed-effect OLS regression?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello @DrBee ,
SAS has three dedicated procedures for panel data regression (time series cross sectional data regression), being :
- SAS/ETS PROC PANEL
- SAS/ETS PROC HPPANEL
- SAS Econometrics PROC CPANEL
Unfortunately, neither of them support binary dependent variables.
On top of what @StatDave writes, you can also look into :
- PROC NLMIXED (but you should feel confident in programming likelihood functions)
- PROC GLIMMIX
I think your reviewer wants you to use "clustered (robust) standard errors".
That can be done with all three panel procedures, but, as said before, not for a binary outcome.
Good luck,
Koen
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for the reply.
"Unfortunately, neither of them support binary dependent variables."
That was the same conclusion that I made after looking into many references.
I guess I should contact the editor and reviewer for further details.
Anyway, I will update the progress.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Dear, StatDave_sas
Thanks for your kind reply.
I will try the STRATA statement and look into Paul Allison's book that you recommended.
Thank you very much!