BookmarkSubscribeRSS Feed
rhysticlight
Calcite | Level 5

Hello,

I would like to create a plot where I have categories in the x-axis (e.g. race, region, etc.) and the rate of an event (e.g. death,) of a binary response variable on the y-axis.

To me this almost seems like plotting the row percent for the "event occured" column in na Rx2 frequency table.

If anyone can give me some guidance on how to best go about this, I would really appreciate it.

Thanks!

2 REPLIES 2
Reeza
Super User

It partly depends on what version of SAS you have. Depending on your data you may want to add a group variable, but again hard to comment without knowing exactly what your data looks like.

Here's my 9.2 solution that uses proc freq to get my percentages and then uses VBAR.

proc freq data=sashelp.class;

table sex*age/out=summary1 outpct;

run;

data graph_data;

    set summary1;

    where sex='F';

    keep sex age pct_col;

    pct_col=pct_col/100;

    format pct_col percent8.1;

run;

proc sgplot data=graph_data;

vbar age /stat=sum response=pct_col;

run; quit;

rhysticlight
Calcite | Level 5

Thank you so much for your help! I am using SAS 9.3 so I will give that a try and see how it goes.

I basically have a variable age that I have grouped into ranges using a format statement, and I would like to have a plot of age group on the x-axis vs. mortality rate in that group on the y-axis. So my code for producing a frequency table (without output) would look something like:

proc freq data=work.temp;

     tables age*dead_yn;

     format age age_groups.;

run;

I will give this a try and let you know how it works out!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 904 views
  • 0 likes
  • 2 in conversation