请教:图形的问题?
下列一程序:
data a;
input MONTH SALES;
datalines;
1 52
2 16
3 78
4 14
5 26
6 31
7 92
8 19
9 18
10 22
11 84
12 93
;
filename lx1 "F:\a.emf";
goptions reset=all DEVICE=emf GSFNAME=lx1 GSFMODE=REPLACE cback=gray xpixels=1350 ypixels=870 ;
axis1 order=(0 to 100 by 10);
symbol1 font=marker value=C height=0.5 color=red w=1 interpol=join;
proc gplot data=a gout=work.twjj;
plot SALES*MONTH
/overlay name="a1" haxis=1 to 15 by 1 vref=1 to 100 by 5
hminor=0 lvref=2 href=1 to 15 by 1 vaxis=axis1 ;
run;
quit;
求助:
问题1、程序输出到work.twjj中的图形没有显示坐标数据。有什么办法让它显示?
问题2、程序第一次运行时,图形存入到work.twjj的名称为“a1”,第二次运行名称变为“a2”。有没有办法让文件覆盖?
谢谢!!!