三维散点图G3D:
proc g3d;
scatter y*x=z;
run;
quit;
回归的5线图(用于2个变量,REG过程或SGPLOT过程):
proc reg alpha=0.01;
model y=x;
plot y*x / conf pred;
run;
quit;
proc sgplot;
reg x=x1 y=y1 / clm cli alpha=0.01 ;
run;
具体的可以看SAS的帮助文档,有详细说明。