BookmarkSubscribeRSS Feed
capam
Pyrite | Level 9

Hi,

 

I'm using SE guide 9.4. I'd like to modify the code below to replace the refline inputs with computed values of 10th percentile and 90th percentile. 

How do I manipulate count and then use the percentile variables in the sgplot below? Or, is there a better way?

Thanks.

 

proc sgplot data=loco_20_0001_freq;
	scatter x=unit y=count / datalabel=unit;
	refline 22.7  / label="10%" LINEATTRS=(color=red);
	refline  31 / label="90%" LINEATTRS=(color=red);
	xaxis display=(nolabel noline noticks) 
		fitpolicy=rotate 
		valuesrotate=vertical;
	yaxis grid;
	title 'Incident Occurrences';
run;

 

1 REPLY 1
ballardw
Super User

The basic approach would be to use another procedure such as proc means to generate the desired percentile of a variable similar to:

proc means data=sashelp.class p10 p20;
  var height;
run;

Look at the output and replace the values in the refline statements.

 

 

If you want to automate then you get into macro coding to generate output from proc means, create macro variables and then reference the macro variables in the sgplot code.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1927 views
  • 0 likes
  • 2 in conversation