Résultats de recherche

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

Génération de Graphique à Bulles 3D

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Bubble Plot (3D)") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.0 h=23pt "Bubble Plot"; title2 color=gray33 ls=0.5 h=17pt "With 3D...

Code SAS
Voir

Génération de Graphique à Bulles 3D

proc sgplot data=my_data aspect=1 noautolegend; styleattrs datacolors=(cx9999ff cx993366); bubble x=x y=y size=value / group=series proportional bradiusmax=70px lineattrs=(color=gray33) /*transparency=.5*/ dataskin=sheen; yaxis values=(0 to 3 by 1) label='Y Axis' labelattrs=(size=16pt weigh...

Code SAS
Voir

Génération de graphique à barres empilées SGPLOT

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Stacked Bar") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.5 h=23pt "Stacked Bar"; title2 color=gray33 ls=0.5 h=17pt "Compares th...

Code SAS
Voir

Génération de graphique à barres empilées SGPLOT

proc sgplot data=my_data noautolegend pad=(left=10% right=15%); styleattrs datacolors=(cx9999ff cx993366); vbar category / response=amount stat=sum group=series barwidth=.6 outlineattrs=(color=black) nostatlabel; yaxis values=(0 to 16 by 4) labelattrs=(size=16pt weight=bold color=gray33) ...

Code SAS
Voir

Graphe à barres empilées 3D avec PROC SGPLOT

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Stacked Bar (3D)") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.5 h=23pt "Stacked Bar"; title2 color=gray33 ls=0.5 h=17pt "With 3...

Code SAS
Voir

Graphique en séries SGPLOT

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Series Plot Lines Without Markers") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=650px height=650px noborder imagemap; title1 color=gray33 ls=0.0 h=23pt "Series Plot Lines"; title2 color=gray3...

Code SAS
Voir

Graphique de séries sans marqueurs

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Series Plot Curves Without Markers") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=650px height=650px noborder imagemap; title1 color=gray33 ls=0.0 h=23pt "Series Plot Curves"; title2 color=gray...

Code SAS
Voir

Visualisation du Cholestérol par Âge

proc sgplot data=sashelp.heart noautolegend; title1 "Cholesterol Level by Age Range"; styleattrs datacolors=(red green purple orange cyan) backcolor=vpav wallcolor=pwh; vbox cholesterol / category=AgeAtStart group=AgeAtStart; format AgeAtStart agefmt.; run;

Code SAS
Voir

Graphique à barres empilées horizontales

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Horizontal Stacked Bar") style=htmlblue;

Code SAS
Voir

Graphique à barres empilées horizontales

proc sgplot data=my_data noautolegend; styleattrs datacolors=(cx9999ff cx993366); hbar category / response=amount stat=sum group=series /*groupdisplay=cluster grouporder=descending*/ outlineattrs=(color=black) nostatlabel; xaxis values=(0 to 16 by 4) labelattrs=(size=16pt weight=bold color=...