Suchergebnisse

130 résultats trouvés Page 10 / 13
Code SAS
Voir

Startbeispiel 1 für PROC LIFEREG

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

Code SAS
Voir

Modeclus-Analyse mit 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

Dokumentationsbeispiel für 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

Dokumentationsbeispiel für 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

Einstiegsbeispiel für PROC MODECLUS

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

Code SAS
Voir

Einstiegsbeispiel für PROC MODECLUS

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

Code SAS
Voir

Erweiterte Anpassung von Diagrammlegenden mit 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;

Code SAS
Voir

Erweiterte Anpassung von Diagrammlegenden mit PROC SGPLOT

/*--Legend Line Length--*/ ods graphics / reset width=5in height=3in imagename='LegendLine'; 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; keylegend / linelength=32; run;

Code SAS
Voir

Erweiterte Anpassung von Diagrammlegenden mit PROC SGPLOT

/*--Legend Line Length and Swatch--*/ ods graphics / reset width=5in height=3in imagename='LegendLineScale'; 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; keylegend / linelength=32 ...

Code SAS
Voir

Erweiterte Anpassung von Diagrammlegenden mit PROC SGPLOT

/*--Legend Line Length and Swatch--*/ ods graphics / reset width=5in height=3in imagename='LegendLineAspect'; 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; keylegend / linelength=32...