Hi everyone,
I run a regression with the command
on 24 dummy variables (named "wave_serial") that can take either value 1 or 0. I was interested in the difference between the pairwise comparisons between a specific dummy (manely 24.wave_serial) and the others, the problem is that when I use the code
, I have an enormous table with all the possible cases. How can I restrict the analysis on the aforementioned comparison?
I'm giving you an example of the codes I run:
Ideally, I would like to have a table with 6 columns (because I'm analysing 6 variables: y1, y2... y6) with the 24 comparisons between wave_serial==24 and wave_serial==n with n=1,2,...,23.
thank you very much for your help
I run a regression with the command
Code:
ivreghdfe
Code:
pwcompare wave_serial, effects mcompare(bonferroni)
I'm giving you an example of the codes I run:
Code:
ivreghdfe y1 i.wave_serial, dkraay(2) pwcompare wave_serial, effects mcompare(bonferroni)
Ideally, I would like to have a table with 6 columns (because I'm analysing 6 variables: y1, y2... y6) with the 24 comparisons between wave_serial==24 and wave_serial==n with n=1,2,...,23.
thank you very much for your help

Comment