Hi,
I am looking for suggestions on how to analyse heterogenous effects of an intervention. I am working with a panel data, with respondents of two different types (type A and type B), allocated in two different treatment groups (Control and Treatment). I have generated three dummy variables: type (for respondent type), treatment (for treatment group allocation) and time (for data collection periods).
To evaluate the effect of the intervention by treatment group, I first ran a simple difference-in-differences regression:
And then a 3-way interactions, to evaluate the effect by respondent type:
Finally, I would also like to measure the effect depending on whether respondents are more or less satisfied with a given service between periods. I have generated another dummy variable services (1 if increase in service satisfaction, 0 if decrease). As such, the code I am using is:
I was wondering if it is econometrically accurate to add a fourth interaction to evaluate the effect by respondent type? i.e.:
Or if I should use another method?
Thank you very much
I am looking for suggestions on how to analyse heterogenous effects of an intervention. I am working with a panel data, with respondents of two different types (type A and type B), allocated in two different treatment groups (Control and Treatment). I have generated three dummy variables: type (for respondent type), treatment (for treatment group allocation) and time (for data collection periods).
To evaluate the effect of the intervention by treatment group, I first ran a simple difference-in-differences regression:
Code:
regress outcomevar time#treatment
Code:
regress outcomevar time##treatment##type
Code:
regress outcomevar time##treatment##services
Code:
regress outcomevar time##treatment##services##type
Thank you very much
Comment