2

I am trying to run the following code in my SAS EG:

Data sashelp.air;

proc sgplot data=sashelp.air;
    histogram AIR /;
    yaxis grid;
    run;

The following error is coming up:

ERROR: Unable to load the Java Virtual Machine. 
Please see the installation instructions or system administrator.

For any type of plotting, the same error is coming up. Please suggest solutions and what the reasons for the issue could be.

1 Answers1

0

Try changing graph format in EG settings.

Tools > Options > Results > Graph

There are 2 dropdown menus, try PNG in both.

mspehar
  • 527
  • 1
  • 6
  • 19