BookmarkSubscribeRSS Feed
candicetait
Calcite | Level 5

Hello, 

 

I ran a psmatch procedure to match companies by size and roa in the same industry class (Fama-French 28) and it returned some matches with a propensity score of exactly 1. 

I don't know why this has happened, can you help? 

 

My code below: 

 

proc psmatch data=m9 region=treated;
class treat ff48;
psmodel treat (treated="1")= size ff48;
match distance=lps method=Greedy(k=1) exact=ff48 caliper=0.5;
assess lps var=(size roa)/ weight=none plots=(boxplot barchart);
output out(obs=match)=OutEx4_&y matchid=_MatchID;
run;

 

Thank you in advance,

Candice

 

Propensity Scores propensity score matching code 

 

1 REPLY 1
Haris
Lapis Lazuli | Level 10

Propensity score of 1 means that the probability of the target treatment is 100% for a company based on your model and the values of the covariates.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 667 views
  • 1 like
  • 2 in conversation