From: SUBSCRIBE SAS-L Yufei Wang on
Hi, all

I'm using the proc univariate cdfplot statement to generate several plots.

My questions are:

Can I define the scale of the haxis?

Can I turn the plot? say change the haxis as percentage, and vaxis as the
variable?

For instance, my code is like the following:

ODS GRAPHICS on;
proc univariate data=all noprint;
var TPCB;
by zone;
class type;
cdfplot TPCB /overlay vref = 5 95
cvref = black
vreflabels = '5%' '95%';
run;
ODS GRAPHICS OFF;
quit;

Because the cdfplots are generated by zone, and the scale for TPCB in each
zone are different, can I manually setup the upper value for haxis in all plots?

Also, my boss like put the TPCB as vaxis, and the percentage in the haxis.
Is that possible to be done in proc univariate/ cdfplot statement?

Thank you.

Yufei