BookmarkSubscribeRSS Feed
autoleech
Calcite | Level 5

I am using SAS EG 5.1. I am trying to use the GUI tools to create charts and they will not display. I have attempted this with bar charts, summary statistics and one way frequency table. I have made sure to include ods graphics on; in my code. Other than that I am at a loss. 

 

Are there any common mistakes/issues that could prevent me from displaying grapics?

 

Thanks!

4 REPLIES 4
Reeza
Super User

Not having the correct Java installation.

Check your log for any errors when you try tools. 

 

Also, try a code snippet, it may be possible that you don't have a SAS/GRAPH license, but you should be able to use sgplot.

 

proc sgplot data=sashelp.class;

scatter x=height y=weight;

run;quit;

autoleech
Calcite | Level 5

I do not have any warnings or errors in the log.

 

The code snippet does not produce any output. The log for this proc does not have any errors or warnings.

 

Can you tell me anything else about the Java installation part that I should look into?

Reeza
Super User

Can you post your log? You have the show results as generated option in EG turned on?

autoleech
Calcite | Level 5

I do have "show generated results" turned on.

 

 

I am not sure what I changed, but after opening up a new instance of SAS, running the code snippet you sent, and then closing and reopening my program it began to work.

 

Thanks for taking time to work on this problem.

 

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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 4 replies
  • 1316 views
  • 0 likes
  • 2 in conversation