BookmarkSubscribeRSS Feed
HBB
Calcite | Level 5 HBB
Calcite | Level 5

the code:

data ex;
do x=-5 to 5 by 0.2;
do y=-5 to 5 by 0.2;
z=x*y+y*y;
output;end;end;
proc g3d;
plot y*x=z;
run;

 

the problem:

 

error:procedure g3d no fand.

 

I am using SAS University Edition. I am a Chinese college student and I am currently studying in China.

 

thank you😃

4 REPLIES 4
Ksharp
Super User
data ex;
do x=-5 to 5 by 0.2;
do y=-5 to 5 by 0.2;
z=x*y+y*y;
output;end;end;
run;

proc template;
  define statgraph surfparm;
   begingraph;
     entrytitle "Bilinear Interpolation";
     layout overlay3d;
       surfaceplotparm x=x y=y z=z / colorresponse=z
         colormodel=(CX3288BD CX99D594 CXE6F598 CXFFFFBF CXFEE08B CXFC8D59 CXD53E4F) 
         surfacetype=fillgrid;
     endlayout;
   endgraph;
  end;
run;

proc sgrender data=ex template=surfparm;
run;
HBB
Calcite | Level 5 HBB
Calcite | Level 5
谢谢您的解答。
ballardw
Super User

Why: The classic graph procedures such as Gchart, Gplot and G3d are not part of the University Edition.

Reeza
Super User

PROC G3D is part of SAS/GRAPH which is not included in the license for SAS UE. 

Instead, you can use SG procedures, which produce better quality graphics in general. 

 

@Ksharp has provided you the translated code.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1185 views
  • 3 likes
  • 4 in conversation