摘要:
ods html; proc template; define statgraph _pblineplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); sca 阅读全文
摘要:
loessplot 局部多项式拟合, ods html; proc template; define statgraph _loessplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (grid 阅读全文
摘要:
MODELBAND用来画置信区间的,只能和这三个plot一块使用。(LOESSPLOT, REGRESSIONPLOT, or PBSPLINEPLOT) ods html; proc template; define statgraph _regressionplot; begingraph; l 阅读全文
摘要:
XAXISOPTS = (TYPE = time timeopts = (interval = month)) 指定使用坐标轴的类型,指定坐标轴的间隔 ods html; proc template; define statgraph _boxplot; begingraph; layout ove 阅读全文
摘要:
就是比例分布图 ods html; proc template; define statgraph _histogram; begingraph; layout overlay; histogram mpg_city ; endlayout; endgraph; end; run; proc sgr 阅读全文
摘要:
datatransparency = 0.4 透明度 ods html; proc template; define statgraph _linechart; begingraph; layout overlay / xaxisopts = (display = (ticks tickvalues 阅读全文
摘要:
innermargin是用在layout overlay或prototype中,去定义一个block plot or axis table。 prototype是用在DATALATTICE|DATAPANEL中定义一个plot structure. /* Create a format for th 阅读全文
摘要:
groupdisplay = 定义如何显示group,堆积、簇等等。 ods html; proc template; define statgraph _barchart; begingraph / ; entrytitle "a"; layout overlay / xaxisopts = (d 阅读全文
摘要:
BREAK = TRUE|FALSE 数据中有缺失值时,是显示一条水平线还是空白 JUSTIFY= 数据点直接的连接方式。多使用center。 data GTL_GS_stepGroup; format Date Date9.; do i=0 to 334 by 40; date='01jan200 阅读全文
摘要:
discretelegend ”name“ / halign = valign = location = border = across = 2 用几列来显示legend sortorder = 按什么顺序排列显示legend title = "" titleattrs = () ; 阅读全文