Hi, I want to restrict my sample to have quasi-balanced pre-and post- observations.. For example, Data original; input supplier customer year post; datalines; 1001 8001 2000 1 1001 8001 2001 1 1002 8006 1995 0 1002 8006 1996 0 1002 8006 1997 1 1002 8006 1998 1 1002 8006 1999 1 1003 8008 2005 0 1003 8008 2006 0 1003 8009 2006 0 1003 8009 2007 1 ; run; I want to keep observations having both pre-and post- period. That is, I want to exclude observations having only (Post = 0s) or (Post = 1s). So, I want to have like this datasets.. after coding; Data hope; input supplier customer year post; datalines; 1002 8006 1995 0 1002 8006 1996 0 1002 8006 1997 1 1002 8006 1998 1 1002 8006 1999 1 1003 8009 2006 0 1003 8009 2007 1 ; run; Thank you!
... View more