Résultats de recherche

197 résultats trouvés Page 13 / 20
Code SAS
Voir

Tuto SAS SGPLOT : Créez des graphiques "100% Stacked" au look 3D (L'option Dataskin révélée)

proc sgplot data=my_data noautolegend pad=(left=10% right=15%); label catpct='PERCENT'; styleattrs datacolors=(cx9999ff cx993366 cxffffcc); vbar category / response=catpct stat=sum group=series barwidth=.6 dataskin=sheen /*

Code SAS
Voir

Génération de Heatmaps avec SGPLOT et SGPANEL

proc sgplot data=sashelp.heart; heatmap x=weight y=cholesterol; run;

Code SAS
Voir

SAS HPNLMOD : Comment Modéliser une Courbe avec "Point de Rupture" (Join Point) Mieux qu'avec PROC NLIN

proc sgplot data=b noautolegend; yaxis label='Observed or Predicted'; refline 0.7775 / axis=y label="Plateau" labelpos=min; refline 12.7477 / axis=x label="Join point" labelpos=min; scatter y=y x=x; series y=yp x=x; run;

Code SAS
Voir

Exemple de démarrage 1 pour PROC LIFEREG

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

Code SAS
Voir

Analyse Modeclus avec option JOIN

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

Exemple de Documentation pour 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

Exemple de Documentation pour 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

Exemple MCD pour PROC ROBUSTREG

proc sgplot data=Children; series x=trail_x y=trail_y/lineattrs=(color="red" pattern=4); scatter x=x y=y/group=off_trail; ellipse x=x y=y/alpha=.05 lineattrs=(color="green" pattern=34); run;

Code SAS
Voir

Analyse Descriptive et Graphiques de l'IMC

proc sgplot data = bmi; vbar bmi / datalabel; run;

Code SAS
Voir

Graphique de densité avec PROC SGPLOT

ods listing gpath="/home/mySASData/resources_github/Graph/Distribution/img" image_dpi=200; *---------------------------------------------------; ods graphics / reset = all attrpriority=color border = no width = 600px height = 400px imagename = "density1" imagefmt = png outputfmt = png antial...