SAS proc gplot:调整轴范围后,回归线不会与点对齐

时间:2017-07-19 18:33:17

标签: plot sas regression axis proc

我正在尝试使用proc glpot创建一个情节。我必须调整y轴(axis2)的范围,以适应我感兴趣的值的范围(使用顺序选项来完成此操作)。问题是如果我为plot2指定noaxis选项,那么回归线就不再适合我的点了。如果我使用相同的水平轴和垂直轴(分别是axis1和axis2)作为plot2的选项,那么我最终会在我的绘图右侧找到另一个轴,如下图所示。 sample output

如何修复它以便我可以在不添加其他轴的情况下将我的回归线与绘图正确匹配?

/* Set the graphics environment */                                                                                                      
    goptions reset=all cback=white border htitle=12pt htext=10pt;   

/* Define the title */                                                                                                                  
title1  "001";                                                                       

/* Define the axis characteristics */                                                                                                   
axis1 label=("Age");                                                                                                              
axis2 label=(angle=90 "Value") minor=(n=4) order= 0 to 1 by .1;                                                                                         

/* Define the symbol characteristics for the scatter plot groups */                                                                             
symbol1 interpol=none value=dot color=R;                                                                                          
symbol2 interpol=none value=dot color=O;
symbol3 interpol=none value=dot color=Y; 
symbol4 interpol=none value=dot color=G; 
symbol5 interpol=none value=dot color=B; 
symbol6 interpol=none value=dot color=P; 
symbol7 interpol=none value=dot color=BL; 

/* Define the symbol characteristics for the regression line */                                                                                 
symbol8 interpol=rlclm90 value=none color=BL W=1;


/* Define the legend options */                                                                                                         
legend1 frame label=none repeat=1                                                                                                    
        value=("1" "2" "3" "4" "5" "6" "7");                                                                                                     

proc gplot data=test;                                                                                                          
   plot value*age=missile / haxis=axis1 
                            vaxis=axis2 
                            legend=legend1
                            vref=.1 
                            vref=.7 
                            lvref=3 
                            cvref=R;                                                                     
    plot2 value*age / haxis=axis1 vaxis=axis2;
    run;                                                                                                                                    
    quit; 

1 个答案:

答案 0 :(得分:0)

我意识到如果你同时使用两个选项vaxis和noaxis,它仍会应用轴范围,但是从图的右侧删除轴标签和刻度标记。因此,我改变以获得所需结果的代码如下所示:

plot2 value*age / vaxis=axis2 noaxis;

fixed plot