BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ram_SAS
Obsidian | Level 7

Hi, 

I have a data with three columns, one distinguish two different population and other variable is ID and probability values.  Need to plot the probability in the y-axis and the x-axis should have both the id information and different population group information?  Any idea?

 

Thanks

Ram

1 ACCEPTED SOLUTION

Accepted Solutions
Jay54
Meteorite | Level 14

As suggested by Reeza:

 

proc sgplot data=temp;

  vbarparm category=pop response=prob / group=id groupdisplay=cluster;

run;

View solution in original post

5 REPLIES 5
Jay54
Meteorite | Level 14

Please share sample data, a picture. 

What release of SAS do you have?

Ram_SAS
Obsidian | Level 7
SAS 9.3
For e.g
data temp;
input pop id prob;
datalines;
0 1 .99
0 2 .33
0 3 .45
0 4 .25
1 1 .6
1 2 .94
1 3 .23
1 4 .87
1 5 .93
1 6 .91
;
Jay54
Meteorite | Level 14

As suggested by Reeza:

 

proc sgplot data=temp;

  vbarparm category=pop response=prob / group=id groupdisplay=cluster;

run;

Reeza
Super User

SGPLOT with VBARPARM or VBAR.

Ram_SAS
Obsidian | Level 7

Need to differentiate the groups at the x axis (left side one group and right side other group). 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2515 views
  • 0 likes
  • 3 in conversation