求助,怎样才可以设置sas直方图的横纵比例?现在纵向距离太短,希望加长,现代码如下,需要如何补充?
proc univariate plot normal;
class team;
var number; 
by team;
freq number;
histogram number/midpoints=13.5  to  72.5  by  2.5 
cframe=white         
ctext=black          
caxis=blue            
cfill=pink           
cbarline=green  normal href=37.75 hreflabel='mean 37.75';      
inset n mean min='min' max='max' q1='q1' q3='q3' median std='std';
label team="角度大小分布曲线" ;
run;
                                        
                                    
附件列表