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;

 

上一篇:10-9-Docker—常用的其他命令:日志,进程,元数据[常用]【查看日志,查看容器内部的进程信息,查看镜像的元数据的查看】


下一篇:【Android 逆向】Android 系统文件分析 ( /proc/ 目录文件分析 | 记录系统和进程信息 | version 内核版本信息文件 )