Hello I'm trying to use PROC SGPLOT with SAS UE : proc sgplot data=ebouli;
symbol1 i=join v=dot;
plot prop*val=1 / haxis= 0 to 17 by 1 hminor=0
vaxis= 0 to 1 by 0.2 vminor=1;
run;
quit;
goptions reset=all; but get this error : proc sgplot data=ebouli;
76 symbol1 i=join v=dot;
76 symbol1 i=join v=dot;
_______
180
ERROR 180-322: Statement is not valid or it is used out of proper order.
77 plot prop*val=1 / haxis= 0 to 17 by 1 hminor=0
____
180
ERROR 180-322: Statement is not valid or it is used out of proper order.
78 vaxis= 0 to 1 by 0.2 vminor=1;
79 run; Please help
... View more