I'm using SAS University edition and I'm trying to find a way to output 3d graphs. I know about the procedures:
g3d
g3grid
However they are not available in my SAS edition, and I was looking for something similar with no avail.
Finally I could workaround this and managed to do it using a template and 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;