Search Results

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

Example of Introduction to SAS Discriminant Procedures

proc sgplot noautolegend; scatter y=y x=x / markerchar=group group=group; run;

Code SAS
Voir

Sans titre

*AQ1.a proc sgplot data=stemp; series x=year y=temperature; scatter x=year y=temperature; run;

Code SAS
Voir

Sans titre

proc sgplot data=fcast; title 'Southern Hemisphere Temperature Comparison to 161 Year Mean'; title2 'with 2011 Forecast'; band x=year upper=upper lower=lower; scatter x=Year y=temperature; series x=year y=temperature; series x=year y=ytrend / lineattrs=(color=black); run; title; title2;

Code SAS
Voir

Starter Example 1 for PROC LIFEREG

proc sgplot data=New; scatter x=Minutes y=Prob / group=Group; discretelegend; run;

Code SAS
Voir

MODECLUS Analysis with JOIN Option

proc sgplot data=out noautolegend; yaxis values=(-10 to 10 by 5); xaxis values=(-15 to 15 by 5); scatter y=y x=x / group=cluster Markerchar=cluster; by _NJOIN_; run;

Code SAS
Voir

Documentation Example for PROC MODECLUS (modecex5)

title2 'Plot of DENSITY*X=CLUSTER'; proc sgplot data=out; scatter y=density x=x / group=cluster datalabel=_obs_; run;

Code SAS
Voir

Documentation Example for PROC MODECLUS (modecex5)

title2 'Plot of DENSITY*X=CLUSTER with TRACE and THRESHOLD=0.55'; proc sgplot data=out; scatter y=density x=x / group=cluster datalabel=_obs_; run;

Code SAS
Voir

Sans titre

proc sgplot; scatter y=y x=x; run;

Code SAS
Voir

Sans titre

proc sgplot data=out noautolegend; scatter y=y x=x / group=cluster markerchar=cluster; by _r_; run;

Code SAS
Voir

Advanced Customization of Graphic Legends with PROC SGPLOT

/*--Legend default--*/ ods graphics / reset width=5in height=3in imagename='LegendDefault'; title 'MSRP by Horsepower'; proc sgplot data=sashelp.cars(where=(type eq 'Sedan')); styleattrs axisextent=data; reg x=horsepower y=msrp / cli clm degree=2; run;