Resultados de búsqueda

122 résultats trouvés Page 5 / 13
Code SAS
Voir

Gráficos con ejes rotos

ods listing style=journal; ods graphics / reset width=5in height=3in imagename='ScatterBrokenAxisSpark'; proc sgplot data=outOfRange nowall noborder; styleattrs axisbreak=spark axisextent=data ; reg x=x y=y / clm markerattrs=(size=5); yaxis ranges=(min-1.5 8.9-max) values=(0 to 10 by 0.2) ...

Code SAS
Voir

Generación de Gráfico de Áreas Apiladas con SGPLOT

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Stacked Area Plot") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder; title1 color=gray33 ls=0.0 h=23pt "Stacked Area Plot"; proc sgplot data=my_data noautolegend; stylea...

Code SAS
Voir

Gráfico de área apilada al 100%

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot 100% Stacked Area Plot") style=htmlblue;

Code SAS
Voir

Gráfico de área apilada al 100%

proc sgplot data=my_data noautolegend; styleattrs datacolors=(cx993366 cx9999ff); band x=x lower=base1_pct upper=y1_pct; band x=x lower=base2_pct upper=y2_pct; yaxis values=(0 to 1 by .2) label='Y Axis' labelattrs=(size=16pt weight=bold color=gray33) valueattrs=(size=16pt weight=bold color=g...

Code SAS
Voir

Gráfico de barras agrupadas horizontalmente

ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Horizontal Grouped Bar") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap;

Code SAS
Voir

Gráfico de barras agrupadas horizontalmente

title1 color=gray33 ls=0.5 h=23pt "Horizontal Grouped Bar"; title2 color=gray33 ls=0.5 h=17pt "Compares values across categories"; proc sgplot data=my_data noautolegend; styleattrs datacolors=(cx9999ff cx993366); hbar category / response=amount stat=sum group=series groupdisplay=cluster groupo...

Code SAS
Voir

SGplot Diagrama de barras agrupadas horizontal (3D)

%let name=bar2; filename odsout '.'; ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" (title="SGplot Horizontal Grouped Bar (3D)") style=htmlblue; ods graphics / imagefmt=png imagename="&name" width=800px height=600px noborder imagemap; title1 color=gray33 ls=0.5 h=23pt "Horizont...

Code SAS
Voir

SGplot Diagrama de barras agrupadas horizontal (3D)

proc sgplot data=my_data noautolegend; styleattrs datacolors=(cx9999ff cx993366); hbar category / response=amount stat=sum group=series groupdisplay=cluster grouporder=descending dataskin=sheen /*

Code SAS
Voir

Gráfico de barras apiladas horizontales

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

Code SAS
Voir

Gráfico de barras apiladas 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=...