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 ...
title; /* clear title */ ods graphics / width=600 height=400; proc sgplot data=work.example4; vbar make / response=avg_mpg; xaxis label="Make"; yaxis label="Average &mpgVar"; run;
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; */
ods graphics / width=1000 height=2000; /* ods html5(eghtml) gtitle; */ proc sgplot data=work.birds_DailyDetect; title "Birdsong Detections by Day - from BirdNET-Pi"; scatter x=Date y=Com_Name / colorresponse=Detections colormodel=(lightblue lightgreen darkgreen lightorange orange red d...
%macro ecdf2(data,var); data tmp (keep=&var); set &data.; run; proc sort data=tmp; by &var.; run; data tmp; set tmp nobs=obs; nv = _N_; p = nv/obs; ecdf = int(p*100); call symput("nbvalue",compress(nv)); run; proc sort data=tmp; by nv; run; /* title "Cumu...