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
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;

Hope this helps!
Dan
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;

Hope this helps!
Dan
Yes, it helped a lot. Thank you SO much!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.