BookmarkSubscribeRSS Feed
bits
Fluorite | Level 6

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...

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You need to supply a variable name to be plotted e.g:

plot <variablename> / sumvar=freq raxis=axis3;

BrunoMueller
SAS Super FREQ

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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1219 views
  • 0 likes
  • 3 in conversation