其他分享
首页 > 其他分享> > SAS boxplot

SAS boxplot

作者:互联网

 

 

ods html;

proc template;
define statgraph _boxplot;
    begingraph;
        layout overlay / xaxisopts = (display = (ticks tickvalues)) yaxisopts = (griddisplay = on);
            boxplot  y = cholesterol x= deathcause / orient = horizontal; 
        endlayout;
    endgraph;
end;
run;

proc sgrender data = sashelp.heart template = _boxplot;
run;

 

标签:griddisplay,sgrender,run,template,SAS,proc,boxplot
来源: https://www.cnblogs.com/Python-T/p/15368791.html