Hello,
I have panel data for a sample for program participants and want to check for balance between the treatment and control groups. imb command, found here, by downloading the cem command.
All the variables I am using are dummies, lag0-2 have possible values of "." ,1,0, and id_off has possible values between 1-10. When i run the following code
I obtain the following message:
I found this response online, that suggested using fewer dummies.
It indeed works if I run the following codes separatly, and only in the specific combination.
Am I am interested in the overall model level of imbalance I would like to run them together. Do you have any suggestions on how to solve the problem?
Thank you in advance,
Sara
I have panel data for a sample for program participants and want to check for balance between the treatment and control groups. imb command, found here, by downloading the cem command.
All the variables I am using are dummies, lag0-2 have possible values of "." ,1,0, and id_off has possible values between 1-10. When i run the following code
Code:
imb lag0 lag1 lag2 id_off, tr(audited)
Code:
L1meas(): 3301 subscript invalid imbalance(): - function returned error <istmt>: - function returned error
It indeed works if I run the following codes separatly, and only in the specific combination.
Code:
imb lag0 id_off, tr(audited)
Code:
imb lag1, tr(audited)
Code:
imb lag2 ,tr(audited)
Thank you in advance,
Sara
Comment