BookmarkSubscribeRSS Feed
4 REPLIES 4
Oluwole
Fluorite | Level 6

I will appreciate getting a sas code to produce a plot as depicted here. Thank you.

Reeza
Super User
I’m assuming your title of ‘box plot’ is a typo, is that correct?
Ksharp
Super User
proc sgplot data=sashelp.class;
dot name/response=weight markerattrs=(symbol=trianglefilled color=blue) nostatlabel;
dot name/response=height markerattrs=(symbol=circlefilled color=red) nostatlabel;
dot name/response=age markerattrs=(symbol=circlefilled color=black) nostatlabel;
refline 80/axis=x lineattrs=(pattern=dash);
xaxis display=(nolabel);
keylegend /location=inside position=bottomright across=1;
run;

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
  • 4 replies
  • 1495 views
  • 4 likes
  • 3 in conversation