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
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.