美文网首页
PROC SGPLOT Procedure

PROC SGPLOT Procedure

作者: StatsHuo | 来源:发表于2015-10-31 22:59 被阅读86次

基本图

SCATTER  X=variable Y=variable </option(s)>; 
SERIES   X=variable Y=variable </option(s)>; 
STEP     X=variable Y=variable </option(s)>; 
BAND     X=variable Y=variable UPPER= numeric-value  | numeric-variable LOWER= numeric-value  |  numeric-variable </option(s)>; 
NEEDLE   X=variable Y=numeric-variable </option(s)>; 
VECTOR   X=numeric-variable Y=numeric-variable </option(s)>; 

拟合图

LOESS    X=numeric-variable Y=numeric-variable </option(s)>; 
REG      X=numeric-variable Y=numeric-variable </option(s)>; 
PBSPLINE X=numeric-variable Y=numeric-variable </option(s)>; 
ELLIPSE  X=numeric-variable Y=numeric-variable </option(s)>; 

分布图

HBOX      analysis-variable </option(s)>;
VBOX      analysis-variable </option(s)>;
HISTOGRAM response-variable </option(s)>; 
DENSITY   response-variable </option(s)>; 

分类图

DOT   category-variable </option(s)> ; 
HBAR  category-variable </option(s)>;
VBAR  category-variable </option(s)>; 
HLINE category-variable </option(s)>;
VLINE category-variable </option(s)>;
HBARPARM  CATEGORY= category-variable RESPONSE=numeric-variable </option(s)>;
VBARPARM  CATEGORY= category-variable RESPONSE=numeric-variable </option(s)>;
WATERFALL CATEGORY= category-variable RESPONSE=numeric-variable </option(s)>; 

相关文章

网友评论

      本文标题:PROC SGPLOT Procedure

      本文链接:https://www.haomeiwen.com/subject/lutqhttx.html