SAS ellipse

 

 

ods html;

proc template;
define statgraph _ellipse;
    begingraph;
        layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on);
            ellipse x = height y = weight / name = 'a' type = predicted display = (fill outline) 
                                            legendlabel = "Predicted";
            scatterplot x = height y = weight;
            discretelegend 'a'  / location = inside halign = right valign = bottom;

        endlayout;
    endgraph;
end;
run;

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

 

posted @ 2021-10-05 22:01  Iving  阅读(39)  评论(0编辑  收藏  举报