SAS GTL CELL

只能在LATTICE中使用

 

 

 如果需要在CELL顶部加title,则使用CELL,否则没必要使用CELL。

statgraph-statements就是GTL中语句。例如CELL中嵌套LAYOUT,PLOT等。

 

 

proc template;
define statgraph inset2;
  begingraph;
    entrytitle "Auto-positioning the Inset Within the Plot Wall";
    layout overlay;
      histogram mrw;
      layout gridded / columns=1 border=true
                       columngutter=5px 
                       autoalign=(topright topleft);
        entry  halign=left "N"       halign=right "5203";  
        entry  halign=left "Mean"    halign=right "119.96";
        entry  halign=left "Std Dev" halign=right "19.98";
      endlayout;
    endlayout;
  endgraph;
end;
run;

proc sgrender data=sashelp.heart template=inset2;
run;

 

posted @ 2022-12-11 12:51  Iving  阅读(122)  评论(0编辑  收藏  举报