- proc template;
- define statgraph scatterplot;
- begingraph;
- entrytitle "Weight and Age by Sex";
- layout overlay;
- scatterplot x=age y=weight /
- group=sex name="abc";
- discretelegend "abc";
- endlayout;
- endgraph;
- end;
- run;
-
- ods html;
- proc sgrender data=sashelp.class template=scatterplot;
- run;
- proc template;
- define statgraph scatterplot;
- begingraph;
- entrytitle "Weight and Age by Sex";
- entrytitle halign=left "Weight and Age by Sex"
- / border=true
- opaque=true
- backgroundcolor=lightgreen
- textattrs=(color=blue
- family='Arial'
- size=14
- style=italic
- weight=bold);
- entryfootnote halign=center 'SMOON Confidential'
- halign=right "MIB";
-
- layout overlay;
- scatterplot x=age y=weight /
- group=sex name="abc";
- discretelegend "abc";
- endlayout;
- endgraph;
- end;
- run;
-
- ods html;
- proc sgrender data=sashelp.class template=scatterplot;
- run;
————————————————————————————————————————————————————————————
從圖形可以看到,設(shè)置backgroundcolor=lightblue后,背景顏色變成淡藍(lán)色了;設(shè)置border=true和borderattrs=(color=pink thickness=3)后,邊框變成粉紅色并且加粗了;設(shè)置designwidth=400px和designheight=400px后,圖表大小改變并且變成正方形了;設(shè)置pad=(bottom=50 right=50)后,下邊和右邊空白區(qū)域變大了。
proc template;
define statgraph scatterplot;
begingraph / backgroundcolor=lightblue
border=true
borderattrs=(color=pink thickness=3)
designwidth=400px
designheight=400px
pad=(bottom=50 right=50);
entrytitle "Weight and Age by Sex";
layout overlay;
scatterplot x=age y=weight /
group=sex name="weight";
discretelegend "weight";
endlayout;
endgraph;
end;
run;
ods html;
proc sgrender data=sashelp.class template=scatterplot;
run;
————————————————————————————————————————————————————————————
對比上下2個圖形,可以看到設(shè)置aspecratio=0.7后,繪圖區(qū)域形狀變了;設(shè)置cycleattrs=true后,圖形顏色從2種顏色變成4種顏色。
proc template;
define statgraph seriesplot;
begingraph / designwidth=360px designheight=260px;
entrytitle "Tech Stock Trends";
layout overlay / yaxisopts=(label='price')
aspectratio=0.7
cycleattrs=true;
seriesplot x=date y=close / group=stock name="stocks"
lineattrs=(thickness=3);
seriesplot x=date y=high / group=stock
lineattrs=(thickness=3);
discretelegend "stocks";
endlayout;
endgraph;
end;
run;
proc sgrender data=sashelp.stocks template=seriesplot;
where date > "31dec1999"d and stock^='IBM';
run;
————————————————————————————————————————————————————————————
對比上下2個圖形,可以看到設(shè)置opaque=true和backgroundcolor=lightyellow后,布局背景顏色變成淡黃色;設(shè)置border=true和borderattrs=(color=blue pattern=dash thickness=2)后,布局區(qū)域顯示邊框,并且邊框?qū)傩詾樗{(lán)色、破折線、加粗;設(shè)置pad=(top=50)后,布局上方和圖表距離變大了;設(shè)置wallcolor=lightgray和walldisplay=(fill)后,繪圖區(qū)域背景顏色變成淡灰色。
proc template;
define statgraph seriesplot;
begingraph / designwidth=360px designheight=260px;
entrytitle "Tech Stock Trends";
layout overlay / yaxisopts=(label='price')
aspectratio=auto
backgroundcolor=lightyellow
border=true
borderattrs=(color=blue pattern=dash thickness=2)
cycleattrs=true
opaque=true
pad=(top=50)
wallcolor=lightgray
walldisplay=(fill);
seriesplot x=date y=close / group=stock name="stocks"
lineattrs=(thickness=3);
seriesplot x=date y=high / group=stock
lineattrs=(thickness=3);
discretelegend "stocks";
endlayout;
endgraph;
end;
run;
proc sgrender data=sashelp.stocks template=seriesplot;
where date > "31dec1999"d and stock^='IBM';
run;
————————————————————————————————————————————————————————————
從圖形對比左右Y軸,可以看到設(shè)置display=(label tickvalues) 后,軸線和標(biāo)記不顯示了;設(shè)置griddisplay=on 后,顯示刻度線;設(shè)置label="population (%)"和labelattrs=(color=blue weight=bold) 后,標(biāo)簽屬性變成藍(lán)色加粗;設(shè)置xaxisopts=(display=none) 后,X軸不顯示了。
proc template;
define statgraph y2axis;
begingraph / designwidth=360px designheight=360px;
layout overlay / walldisplay=none
yaxisopts=(display=(label tickvalues)
griddisplay=on
label="population (%)"
labelattrs=(color=blue weight=bold)
name="Y")
xaxisopts=(display=none);
histogram height / scale=count yaxis=y2 name="height";
histogram height / scale=proportion yaxis=y;
densityplot height / normal();
discretelegend "height";
endlayout;
endgraph;
end;
run;
proc sgrender data=sashelp.class template=y2axis;
run;