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;
本文来自博客园,作者:Iving,转载请注明原文链接:https://www.cnblogs.com/SAS-T/p/15369748.html