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!
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;
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?
Can you post your log? You have the show results as generated option in EG turned on?
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.
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!
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.