I have submitted the code for creating bar-line graph as:
proc gbarline data=work.val; bar Manufacturer / sumvar=nam width=2 discrete noframe space=1 raxis=axis2 maxis=axis1; plot / sumvar=freq raxis=axis3; run; quit;
But its showing an error as:
295 proc gbarline data=work.val;
296 bar Manufacturer/sumvar=name width=2 discrete noframe space=1 raxis=axis2
297 maxis=axis1;
298 plot/sumvar=freq raxis=axis3;
-
22
76
ERROR 22-322: Expecting a name.
ERROR 76-322: Syntax error, statement will be ignored.
299 run;
300 quit;
please help...thanks in advance...
You need to supply a variable name to be plotted e.g:
plot <variablename> / sumvar=freq raxis=axis3;
Hi
You should provide the SAS Version Information, this will help to lookup the corresponding documentation.
You can use the following code to get the version information back:
%put NOTE: SYSVLONG=&sysvlong SYSSCPL=&sysscpl;
Bruno
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.