Charger window problem

https://www.amazon.com/gp/product/B00AF0OFVU/ref=as_li_tl?ie=UTF8&tag=steadfast2277-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=B00AF0OFVU&linkId=20a545bbc300fbd3098a1a090622d915

 

https://www.ebay.com/itm/04602784AC-Fit-2008-2010-Dodge-Challenger-Master-Power-Left-Window-Switch-Button/162575801974?hash=item25da45de76:g:KiEAAOSwNWhb3T~Y&frcectupt=true

 

https://www.1aauto.com/2008-14-dodge-challenger-master-power-window-switch/i/1awes00297?f=1054496&y=2010&utm_campaign=gb_csv_br&utm_content=WES&gclid=EAIaIQobChMI7LvP5qWC4QIVD3gBCh2kfQ_EEAEYASABEgKAtPD_BwE

 

Propensity score matching

Typing up an observation:

I had one old data and I updated two categorical variables (black and asian variables) in the new data.  The change was only in one group in the data (there were 10 groups all together).  Theoretically I would expect the matching results (in terms of means of the two variables) to change only in that group.  The changes also happened in two other groups.

proc psmatch data=psm region=cs;
where &outcome ne .;
class CP_FLAG districtname SCHOOLNAME ;
psmodel CP_FLAG(Treated="Y")= &exactvar &predictors;
match method=greedy(k=1)/*(order=random)*/ exact=districtname stat=lps caliper=&caliper;
output out(obs=match)=outgs lps=_Lps matchid=_matchID;
run;
proc sort data=outgs;by _matchID;run;