BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi,
I am a relatively new user of SAS. I am running SAS 9.1.3 SP4 in windows XP. As per our IT support guys, SAS graph is installed and licensed in my PC. Proc Setinit; Run; shows SAS/Graph valid till April, 2011.
To check if the SAS/Graph is installed I went to start>control pane>add/remove program. It indeed shows "SAS 9.1 graph graph graph".
Now when I run some simple SAS code with GPLOT, it throws an error that "Proc GPLOT is not found".
Also if I try to navigate to SAS Graphics editor in SAS environment using Tools>Graphics Editor it shows "ERROR: Module SASZGRAF not found in search paths."

Any clue what am I missing here?
3 REPLIES 3
GraphGuy
Meteorite | Level 14
If running the following does not produce graphs, I'd say either SAS/Graph is not installed, or is not installed correctly ... and a call to Tech Support is probably in order (they'll know best what questions to ask you, to figure out what's the problem!)

proc gplot data=sashelp.class;
plot height*weight;
run;

proc gchart data=sashelp.revhub2;
hbar hub / type=sum sumvar=revenue;
run;

proc gmap data=maps.us map=maps.us;
id state;
choro state / levels=5;
run;
Ksharp
Super User
Hi. Or use SAS automacro to see whether it is register?


[color]

%put NOTE:SAS/Graph is Regist? %sysprod(graph);



Return 1 is to mean registered.
Less equal 0 is not.

Ksharp Message was edited by: Ksharp
deleted_user
Not applicable
Thanks guys. SAS/Graph was registered. In the control panel of my PC it was showing SAS as SAS/Graph and that's why I thought that it was installed. However when I spoke to the support guys they simply reinstalled everything and it works fine now.

Thanks again.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 995 views
  • 0 likes
  • 3 in conversation