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

Hi, 

Is there any way to add percentiles ( maybe only the first, second and third percentiles) as vertical reference lines on the density normal plot?

 

thanks

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

Here's one way to do it:

 

proc means data=sashelp.heart P25 P50 P75;
var cholesterol;
ods output summary=pctls;
run;

data merged;
set sashelp.heart pctls;
run;

proc sgplot data=merged;
density cholesterol;
refline Cholesterol_P25 / axis=x legendlabel="25th" lineattrs=(color=blue thickness=3) name="p25";
refline Cholesterol_P50 / axis=x legendlabel="50th" lineattrs=(color=red thickness=3) name="p50";
refline Cholesterol_P75 / axis=x legendlabel="75th" lineattrs=(color=green thickness=3) name="p75";
keylegend "p25" "p50" "p75" / title="Percentiles";
run;

 

The SGPlot Procedure

 

Hope this helps!

Dan

View solution in original post

2 REPLIES 2
DanH_sas
SAS Super FREQ

Here's one way to do it:

 

proc means data=sashelp.heart P25 P50 P75;
var cholesterol;
ods output summary=pctls;
run;

data merged;
set sashelp.heart pctls;
run;

proc sgplot data=merged;
density cholesterol;
refline Cholesterol_P25 / axis=x legendlabel="25th" lineattrs=(color=blue thickness=3) name="p25";
refline Cholesterol_P50 / axis=x legendlabel="50th" lineattrs=(color=red thickness=3) name="p50";
refline Cholesterol_P75 / axis=x legendlabel="75th" lineattrs=(color=green thickness=3) name="p75";
keylegend "p25" "p50" "p75" / title="Percentiles";
run;

 

The SGPlot Procedure

 

Hope this helps!

Dan

dustychair
Pyrite | Level 9

Yes, it helped a lot. Thank you SO much!

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
  • 544 views
  • 1 like
  • 2 in conversation