天天看点

SAS histogram

就是比例分布图

ods html;

proc template;
define statgraph _histogram;
    begingraph;
        layout overlay;
            histogram  mpg_city ;
        endlayout;
    endgraph;
end;
run;

proc sgrender data = sashelp.cars template = _histogram;
run;      

本文来自博客园,作者:Iving,转载请注明原文链接:https://www.cnblogs.com/SAS-T/p/15368750.html

上一篇: SAS boxplot
下一篇: SAS barchart

继续阅读