首页 > TAG信息列表 > griddisplay
SAS loessplot fit
loessplot 局部多项式拟合, ods html; proc template; define statgraph _loessplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); modelband "Loess" / name = "loess" legendSAS boxplot
ods html; proc template; define statgraph _boxplot; begingraph; layout overlay / xaxisopts = (display = (ticks tickvalues)) yaxisopts = (griddisplay = on); boxplot y = cholesterol x= deathcause / orient = horizontal;SAS scatterplot
ods html; *DATALABEL = ; proc template; define statgraph _scatter; begingraph; entrytitle "Weight by Height"; layout overlay/xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); scatterplot x = weight y = heightSAS bubbleplot
DATASKIN: 控制plots的显示,看起来是否更光滑等。 ods html; proc template; define statgraph _bubbleplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); bubbleplot x = height y = weight size = age / gro