SAS中文论坛
标题:
求助:用模板显示多图的问题?
[打印本页]
作者:
shiyiming
时间:
2009-12-20 22:48
标题:
求助:用模板显示多图的问题?
求助:用模板显示多图的问题?
有这样一段程序:
data plot;
input n i $ f;
cards;
1 a1 1
1 a2 5
1 a3 10
1 a4 3
1 a5 9
1 a6 3
2 a1 5
2 a2 8
2 a3 16
2 a4 4
2 a5 12
2 a6 6
;
run;
proc gchart data=plot gout=plot;
vbar i / name="b1" discrete sumvar=f subgroup=n space=1
outside=freq inside=freq gspace=4 ;
pattern1 v=s c=red;
pattern2 v=s c=yellow;
run;
quit;
proc greplay nofs igout=plot;
tc sashelp.templt;
template v2;
treplay 1:b1 2:b1;
run;
quit;
问题:
用模板V2后, 为什么图中显示的频数和横轴、竖轴的标签都没有了。
请教如何能让它们都显示出来? 谢谢!!!
欢迎光临 SAS中文论坛 (https://mysas.net/forum/)
Powered by Discuz! X3.2