BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
UcheOkoro
Lapis Lazuli | Level 10

Hello,

 

Please, I need help plotting 3 caterpillar plots in one graph. My y axis has the proportions of violation(with CL) and the x axis has the providers. I would like to create 3 plots from the providers. The third variable is the "designation" of the providers- resident, APP and faculty. Please find below my SAS codes.

Thank you.

proc sgplot data=violation_score4 noautolegend;
   scatter y=Violation_new x=Provider  / yerrorlower=Lower_CL yerrorupper=Upper_CL  markerattrs=(symbol=diamondfilled);
   refline 0 / axis=y;
   xaxis grid;
   yaxis grid display=(nolabel) discreteorder=data reverse;
  run;
1 ACCEPTED SOLUTION

Accepted Solutions
UcheOkoro
Lapis Lazuli | Level 10
proc sgplot data=violation_score4 ;
   scatter y=Violation x=Provider  /group=Designation yerrorlower=Lower_CL yerrorupper=Upper_CL  markerattrs=(symbol=diamondfilled);
   refline 0 / axis=y;
      xaxis grid;
   yaxis grid  discreteorder=data reverse;
   keylegend  / location=outside;
        run;

View solution in original post

1 REPLY 1
UcheOkoro
Lapis Lazuli | Level 10
proc sgplot data=violation_score4 ;
   scatter y=Violation x=Provider  /group=Designation yerrorlower=Lower_CL yerrorupper=Upper_CL  markerattrs=(symbol=diamondfilled);
   refline 0 / axis=y;
      xaxis grid;
   yaxis grid  discreteorder=data reverse;
   keylegend  / location=outside;
        run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 718 views
  • 0 likes
  • 1 in conversation