BookmarkSubscribeRSS Feed
fama
Fluorite | Level 6

Hi All,

 

I am running the DID regression model to estimate the treatment effect.

Prior to this, I have created the dataset using propensity score matching. So, I have matched pairs (each treated subject is matched to two nearest neighbours control subject).

I am using below code. However, this code does not account for the matched data.

Indeed, the matched pair should be the unit of analysis and I need to modify the below code to accout for the  matched pairs

To make it clear, the below code considers all treated subjects versus all control subjects while  I am looking for the differences between treated and control subject in each matched pair.

 

Thanks in advanced

 

 

/*Repeated measure linear regression*/

 

PROC MIXED DATA = Long; /* long format*/

CLASS A B;

MODEL Y=A|B covariatesX1 X2..Xn / SOLUTION;
LSMEANS      A|B / DIFF;
ESTIMATE     'D-I-D' A*B    1 -1 -1 1;
RANDOM     Int/SUBJECT=     TYPE=UN ;
RUN;

1 REPLY 1
fama
Fluorite | Level 6

Hi All,

 

I am running the DID regression model to estimate the treatment effect.

Prior to this, I have created the dataset using propensity score matching. So, I have matched pairs (each treated subject is matched to two nearest neighbors control subject).

I am using below code. However, this code does not account for the matched data.

Indeed, the matched pair should be the unit of analysis and I need to modify the below code to account for the  matched pairs

To make it clear, the below code considers all treated subjects versus all control subjects while  I am looking for the differences between treated and control subject in each matched pair.

 

Thanks in advanced

 

 

/*Repeated measure linear regression*/

 

PROC MIXED DATA = Long; /* long format*/

CLASS A B;

MODEL Y=A|B covariatesX1 X2..Xn / SOLUTION;
LSMEANS      A|B / DIFF;
ESTIMATE     'D-I-D' A*B    1 -1 -1 1;
RANDOM     Int/SUBJECT=     TYPE=UN ;
RUN;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1231 views
  • 0 likes
  • 1 in conversation