proc sgplot data=Melanoma; scatter y=Incidences x=Year; run;
proc sgplot data=logistic; scatter y=y x=dose; xaxis type=log logstyle=linear; run;
ods graphics / reset width=5in height=3in imagename='4_5_1_Survival Plot_SG_V94'; title 'Product-Limit Survival Estimates'; title2 h=0.8 'With Number of AML Subjects at Risk'; proc sgplot data=SurvivalPlotData; step x=time y=survival / group=stratum lineattrs=(pattern=solid) name='s'; scatte...
ods listing style=htmlBlue; ods graphics / reset width=5in height=3in imagename='4_5_2_Survival Plot_Inner_SG_V94'; title 'Product-Limit Survival Estimates'; title2 h=0.8 'With Number of AML Subjects at Risk'; proc sgplot data=SurvivalPlotData; step x=time y=survival / group=stratum lineattrs=...
ods listing style=journal; ods graphics / reset width=5in height=3in imagename='4_5_3_Survival Plot_Inner_Journal_SG_V94'; title 'Product-Limit Survival Estimates'; title2 h=0.8 'With Number of AML Subjects at Risk'; proc sgplot data=SurvivalPlotData; step x=time y=survival / group=stratum lin...
ods graphics / reset width=5in height=3in imagename='4_9_1_TumorSize_SG_V94'; title 'Change in Tumor Size'; title2 'ITT Population'; proc sgplot data=TumorSize nowall noborder; styleattrs datacolors=(cxbf0000 cx4f4f4f) datacontrastcolors=(black); vbar cid / response=change group=group categor...
ods graphics / reset width=5in height=3in imagename='4_9_2_TumorSize_SG_V94'; title 'Change in Tumor Size'; title2 'ITT Population'; proc sgplot data=TumorSizeDesc nowall noborder; styleattrs datacolors=(cxbf0000 gold) datacontrastcolors=(black) axisextent=data; band x=cid upper=20 lower=-30 ...
proc sgplot data=drinking; scatter x=alcohol y=cirrhosis / datalabel=country; run; /* symbol1 pointlabel=('#country'); proc gplot data=drinking; plot cirrhosis*alcohol ; run; */
ods graphics on; proc reg data=drinking; model cirrhosis=alcohol; run; ods graphics off; /* proc sgplot data=drinking; scatter x=alcohol y=cirrhosis ; reg x=alcohol y=cirrhosis / clm; run; */
proc sgplot data=universe; scatter y=velocity x=Distance; yaxis label='velocity (kms)'; xaxis label='Distance (mega-parsec)'; run; /* proc gplot data=universe; plot velocity*Distance; label velocity='velocity (kms)' distance='Distance (mega-parsec)'; run; */