Search Results

121 résultats trouvés Page 11 / 13
Code SAS
Voir

PROC LOESS Introduction Example: Melanoma Incidences

proc sgplot data=Melanoma; scatter y=Incidences x=Year; run;

Code SAS
Voir

Example 4 for PROC NLIN: Influence of Parameterization on Curvature

proc sgplot data=logistic; scatter y=y x=dose; xaxis type=log logstyle=linear; run;

Code SAS
Voir

Survival Analysis with Curves and Risk Tables

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...

Code SAS
Voir

Survival Analysis with Curves and Risk Tables

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=...

Code SAS
Voir

Survival Analysis with Curves and Risk Tables

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...

Code SAS
Voir

Tumor Size Change Graphs (Waterfall Plot)

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...

Code SAS
Voir

Tumor Size Change Graphs (Waterfall Plot)

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 ...

Code SAS
Voir

Linear Regression Analysis and Visualization

proc sgplot data=drinking; scatter x=alcohol y=cirrhosis / datalabel=country; run; /* symbol1 pointlabel=('#country'); proc gplot data=drinking; plot cirrhosis*alcohol ; run; */

Code SAS
Voir

Linear Regression Analysis and Visualization

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; */

Code SAS
Voir

Linear Regression Analysis and Visualization

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; */