在SAS University Edition中绘制3D图形

pabloxrl

我正在使用SAS University Edition,并且试图找到一种输出3d图形的方法。我知道有关程序:

g3d
g3grid

但是,它们在我的SAS版本中不可用,我一直在寻找类似的东西而无济于事。

pabloxrl

最后,我可以解决此问题,并设法使用模板和overlay3d

proc template;
  define statgraph surface;
  begingraph;
    layout overlay3d;
      surfaceplotparm x=gxc y=gyc z=estimate;
    endlayout;
  endgraph;
end;
run;

proc sgrender data=input template=surface;
run;

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章