摘要:
layout ; plots / orient = horizontal group = 分组展示数据。就是方便不同组之间对比。 name = "name" 给DISCRETELEGEND提供一个名字。就是用来显示legend图例的。 legendlabel = ""定义显示在legend中的lab 阅读全文
摘要:
从xorigin > x yorigin > y的合成向量 /*--4_2_9 Data Set VECTOR--*/ data GTL_GS_vector; format label 3.0; do i=1 to 10; x=ranuni(2); xo=x*(1+(ranuni(2)-0.5)); 阅读全文
摘要:
data GTL_GS_SeriesGroup; format Date Date9.; do i=0 to 334 by 30; date='01jan2009'd+i; if mod (i, 30) =0 then freq=1; else freq=0; Drug='Drug A'; Val 阅读全文
摘要:
ods html; *DATALABEL = ; proc template; define statgraph _scatter; begingraph; entrytitle "Weight by Height"; layout overlay/xaxisopts = (griddisplay 阅读全文
摘要:
data GTL_GS_NeedleLabel; format Date Date9.;format a 4.3; do i=0 to 334 by 30; date='01jan2009'd+i; A = 16+ 3*sin(i/90+0.5) + 1*sin(3*i/90+0.7); outpu 阅读全文
摘要:
DATASKIN: 控制plots的显示,看起来是否更光滑等。 ods html; proc template; define statgraph _bubbleplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yax 阅读全文
摘要:
data GTL_GS_bandGroup; format Date Date9.; do i=0 to 334 by 1; date='01jan2009'd+i; if mod (i, 30) =0 then freq=1; else freq=0; Drug='Drug A'; Val = 1 阅读全文