|
两行,第一行3幅,第二行2幅。即将screen用坐标分割
%macro fivegreply(graph1 = ,graph2 = ,graph3 = ,graph4 =,graph5 = );
proc greplay nofs igout = work.graph gout = work.graph tc = tempcatNOFS;
TDEF five 1/llx = 0 lly = 50
ulx = 0 uly = 100
lrx = 33.3 lry = 50
urx = 33.3 ury = 100
2/llx = 33.3 lly = 50
ulx = 33.3uly = 100
lrx = 66.6 lry = 50
urx = 66.6 ury = 100
3/llx = 66.6 lly = 50
ulx = 66.6 uly = 100
lrx = 100 lry = 50
urx = 100 ury = 100
4/llx = 0 lly = 0
ulx = 0 uly = 50
lrx = 33.3 rly = 0
urx = 33.3 ury = 50
5/llx = 33.3 lly = 0
ulx = 33.3 uly = 50
lrx = 66.6 lry = 0
urx = 66.6 ury = 50;
template five;
tplay 1:&graph1. 2:&graph2. 3:&graph3. 4:&graph4. 5:&graph5.;
quit;
%mend;
|