BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
hyunjeehale
Calcite | Level 5

Each time I try to use proc boxplot in Base SAS or EG, I receive the following error: ERROR: Unable to load the traditional graphics subsystem: SASXGSUB.

 

I haven't been able to find any support documentation for this error specifically and was wondering if anyone else had experienced it and what the fix was. 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

The "traditional" device-based graphics requires a license to SAS/Graph.

You can check to see if you have such a license by running:

proc setinit; run;

Log shows this if licensed.
---SAS/GRAPH

If you don't have a license then you'll want to use a different procedure such as SGPLOT or get a license.

 

If the log shows that you have license then run:

Proc product_status;run;

Log shows this if installed:
For SAS/GRAPH ...
   Custom version information:

If licensed and not installed then you need to reinstall making sure that SAS/Graph is selected.

 

 

View solution in original post

1 REPLY 1
ballardw
Super User

The "traditional" device-based graphics requires a license to SAS/Graph.

You can check to see if you have such a license by running:

proc setinit; run;

Log shows this if licensed.
---SAS/GRAPH

If you don't have a license then you'll want to use a different procedure such as SGPLOT or get a license.

 

If the log shows that you have license then run:

Proc product_status;run;

Log shows this if installed:
For SAS/GRAPH ...
   Custom version information:

If licensed and not installed then you need to reinstall making sure that SAS/Graph is selected.

 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 659 views
  • 0 likes
  • 2 in conversation