Hi All,
One of the analysts reported that she is unable to run the below code in SAS EG:
data my_data;
input day $ sales;
datalines;
1 7
2 12
3 15
4 14
5 13
6 11
7 10
8 16
9 18
10 24
;
run;
/*view dataset*/
proc print data=my_data;
/*create line plot that displays sales by day*/
proc sgplot data=my_data;
series x=day y=sales;
run;
Error: Unable to load the Java Virtual Machine. Please see the installation instructions or system administrator.
Checked the Java version and installed the latest but still no luck. The same code works just fine for me both locally and as SASApp. Any idea what am I missing here? Thank you!
Regards,
Asha