Below is the log: 1 The SAS System 20:02 Thursday, August 19, 2021 1 ;*';*";*/;quit;run; 2 OPTIONS PAGENO=MIN; 3 %LET _CLIENTTASKLABEL='2. PS Match.sas'; 4 %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project'; 5 %LET _CLIENTPROJECTPATH=''; 6 %LET _CLIENTPROJECTPATHHOST=''; 7 %LET _CLIENTPROJECTNAME=''; 8 %LET _SASPROGRAMFILE='E:\_Papers\NIS - Obesity and pregnancy\SAS codes\2. PS Match.sas'; 9 %LET _SASPROGRAMFILEHOST='DESKTOP-6962RGI'; 10 11 ODS _ALL_ CLOSE; 12 OPTIONS DEV=SVG; 13 GOPTIONS XPIXELS=0 YPIXELS=0; 14 %macro HTML5AccessibleGraphSupported; 15 %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) >= 0 %then ACCESSIBLE_GRAPH; 16 %mend; 17 FILENAME EGHTML TEMP; 18 ODS HTML5(ID=EGHTML) FILE=EGHTML 19 OPTIONS(BITMAP_MODE='INLINE') 20 %HTML5AccessibleGraphSupported 21 ENCODING='utf-8' 22 STYLE=HTMLBlue 23 NOGTITLE 24 NOGFOOTNOTE 25 GPATH=&sasworklocation 26 ; NOTE: Writing HTML5(EGHTML) Body file: EGHTML 27 28 proc psmatch data=nis region=treated; 29 30 class obese race pay1 ZIPINC_QRTL ELECTIVE MultipleBirths PreviousCS PreDM CRD PreHTN Depression Abuse Psychiatric 30 ! CM_LIVER CM_CHRNLUNG 31 HOSP_REGION HOSP_LOCATION HOSP_BEDSIZE HOSP_TEACH; 32 33 psmodel obese (Treated='1')= age race pay1 ZIPINC_QRTL ELECTIVE MultipleBirths PreviousCS PreDM CRD PreHTN Depression 33 ! Abuse Psychiatric CM_LIVER CM_CHRNLUNG 34 HOSP_REGION HOSP_LOCATION HOSP_BEDSIZE HOSP_TEACH; 35 36 match method=greedy(k=1) distance=lps caliper=0.5; 37 38 assess ps var=(age race pay1 ZIPINC_QRTL ELECTIVE MultipleBirths PreviousCS PreDM CRD PreHTN Depression Abuse Psychiatric 38 ! CM_LIVER CM_CHRNLUNG 39 HOSP_REGION HOSP_LOCATION HOSP_BEDSIZE HOSP_TEACH)/ plots=all weight=none; 40 41 output out(obs=match)=NIS_1 matchid=_MatchID; 42 43 run; WARNING: You must enable ODS graphics before requesting plots. WARNING: The classification variable RACE in the VAR= option in the ASSESS statement is not a binary variable. The variable is not used in the ASSESS statement. WARNING: The classification variable PAY1 in the VAR= option in the ASSESS statement is not a binary variable. The variable is not used in the ASSESS statement. WARNING: The classification variable ZIPINC_QRTL in the VAR= option in the ASSESS statement is not a binary variable. The variable is not used in the ASSESS statement. WARNING: The classification variable HOSP_REGION in the VAR= option in the ASSESS statement is not a binary variable. The variable is not used in the ASSESS statement. WARNING: The classification variable HOSP_BEDSIZE in the VAR= option in the ASSESS statement is not a binary variable. The variable 2 The SAS System 20:02 Thursday, August 19, 2021 is not used in the ASSESS statement. NOTE: The data set WORK.NIS_1 has 128074 observations and 83 variables. NOTE: PROCEDURE PSMATCH used (Total process time): real time 2:26.72 cpu time 1:57.29 44 45 %LET _CLIENTTASKLABEL=; 46 %LET _CLIENTPROCESSFLOWNAME=; 47 %LET _CLIENTPROJECTPATH=; 48 %LET _CLIENTPROJECTPATHHOST=; 49 %LET _CLIENTPROJECTNAME=; 50 %LET _SASPROGRAMFILE=; 51 %LET _SASPROGRAMFILEHOST=; 52 53 ;*';*";*/;quit;run; 54 ODS _ALL_ CLOSE; 55 56 57 QUIT; RUN; 58
... View more