BookmarkSubscribeRSS Feed
echoli
Obsidian | Level 7

Hi All,

 

How can I change yaxis in the vbar figure? I don't need frequency, I need percentage. But I don't have a percentage column in dataset, I can got it by proc freq.

here is my code for figure:

 

proc freq data=lin_;
tables binary*groups;
run;

 

proc sgplot data=lin_;
vbar binary / group = groups groupdisplay = cluster;
run;

 

any idea?

 

Thanks,

Chen

vbar.png

 

5 REPLIES 5
Rick_SAS
SAS Super FREQ

Here is a link to the doc for the VBAR statement.  If you search for "percent" on that page you will find the STAT=PERCENT option.

 

echoli
Obsidian | Level 7

Hi Rich,

 

I tried to use stat=percent option, but what if I just want col percent for Y axis? Any way to solve this?

 

Thanks,

Chen

DanH_sas
SAS Super FREQ

If you have a column called "percent", do this instead:

 

proc sgplot data=lin_;
vbarparm  x=binary y=percent / group = groups groupdisplay = cluster;
run;

DanH_sas
SAS Super FREQ

If you use STAT=PCT on the VBAR statement, do you get what you want?

echoli
Obsidian | Level 7

I got group percentage, but I just want col percentage in Y axis.

 

Thanks,
chen

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1479 views
  • 0 likes
  • 3 in conversation