성별과 나이를 조정하여 ps매칭을 진행하는데 지속적으로 동일한 오류가 발생하여 질문드립니다. 코드는 아래와 같습니다. proc psmatch data=ii1 region=TREATED; class hlmean sex ; psmodel hlmean(Treated='1')= sex Age ; match method=GREEDY(k=6) EXACT=SEX CALIPER=0.5 ; assess lps var=(sex Age) / weight=none; output out(obs=MATCH)=OutEx9 matchid=_MatchID; run; 이와 같이 진행하였을 때 'WARNING: Some treated units have less than the specified K=6 matched controls because there are not enough available controls for these treated units.' 오류가 발생하는데 어떤 것이 문제인가요?
... View more