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

SAS bubbleplot

作者:互联网

 

DATASKIN: 控制plots的显示,看起来是否更光滑等。

ods html;

proc template;
define statgraph _bubbleplot;
begingraph;
    layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on);
        bubbleplot x = height y = weight size = age / group = sex dataskin = gloss name = "a";
        discretelegend 'a' / location = inside valign = bottom halign = right 
                             across = 4 title = "Sex:";
    endlayout;
endgraph;
end;
run;

proc sgrender data = sashelp.class template = _bubbleplot;
run;

 

标签:griddisplay,right,run,template,SAS,bubbleplot,proc
来源: https://www.cnblogs.com/Python-T/p/15368344.html