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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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