Dear statalist users.
I am investigating value creation for start-ups that have received government support (treatment group) vs startups that have not received government support.
I started off by performing PSM along the variables size, geography, industry and year of application for treatment.
As the observations contained both value creation in year0 and year3 (these were not separate observations), I used expand 2, to duplicate the observations in order to separate observations of value creation in year 0 and year 3.
Now I want to use the matched sample for the differences in differences estimation strategy.
My model looks like this:
Where ValCre3 is value creation in year 3, Postvalcre is a variable that takes the value 1 if post treatment and 0 otherwise. treated_match takes the value 1 if the observation is treated and within the matched sample, and 0 otherwise. And treated_match##Postvalcre is the interaction variable indicating treated post treatment. I use clustered standard errors to correct for the fact that some companies (denoted by the variable Kunde1) receive several treatments.
The output is as shown below:
Linear regression Number of obs = 2,224
F(1, 906) = .
Prob > F = .
R-squared = 0.0001
Root MSE = 3150.1
(Std. Err. adjusted for 907 clusters in Kunde1)
-------------------------------------------------------------------------------------
| Robust
ValCre3 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
--------------------+----------------------------------------------------------------
1.treated_match | 74.7199 229.8976 0.33 0.745 -376.4739 525.9137
1.year3 | 5.62e-12 . . . . .
|
treated_match#year3 |
1 1 | -5.55e-12 . . . . .
|
_cons | 816.3444 202.2573 4.04 0.000 419.3972 1213.292
-------------------------------------------------------------------------------------
Could anybody tell me why no results are shown for the interaction variable treated_match#year3? Is the model wrongly specified, or have I made other mistakes?
I am investigating value creation for start-ups that have received government support (treatment group) vs startups that have not received government support.
I started off by performing PSM along the variables size, geography, industry and year of application for treatment.
As the observations contained both value creation in year0 and year3 (these were not separate observations), I used expand 2, to duplicate the observations in order to separate observations of value creation in year 0 and year 3.
Now I want to use the matched sample for the differences in differences estimation strategy.
My model looks like this:
Code:
reg ValCre3 treated_match##Postvalcre, cluster(Kunde1)
The output is as shown below:
Linear regression Number of obs = 2,224
F(1, 906) = .
Prob > F = .
R-squared = 0.0001
Root MSE = 3150.1
(Std. Err. adjusted for 907 clusters in Kunde1)
-------------------------------------------------------------------------------------
| Robust
ValCre3 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
--------------------+----------------------------------------------------------------
1.treated_match | 74.7199 229.8976 0.33 0.745 -376.4739 525.9137
1.year3 | 5.62e-12 . . . . .
|
treated_match#year3 |
1 1 | -5.55e-12 . . . . .
|
_cons | 816.3444 202.2573 4.04 0.000 419.3972 1213.292
-------------------------------------------------------------------------------------
Could anybody tell me why no results are shown for the interaction variable treated_match#year3? Is the model wrongly specified, or have I made other mistakes?
Comment