Prev: Data Integration Studio: Why does SCD type 2 loader just updates one row for type 1 columns
Next: Logic - Data restructure
From: dc353 on 7 Jul 2010 10:57 Hi, I'm generating a histogram with the following code and need help in controlling the vertical axis. Would like to graph from 0 to 1 percent. title 'ge (SAS)'; legend2 FRAME CFRAME=ligr CBORDER=black POSITION=center; proc capability data=hold.sas_ge noprint; histogram LOG_RET / cframe = ligr midpoints = -.3 to .3 by .0005 normal(color=yellow) cfill = blue legend = legend2; run; |