I am using EG to connect to a remote server. I am running code in a program to generate a graph. The graph (.png file) is written to my Project folder on the remote server under Files in the Server List. I am trying to copy/export the .png file to my local computer. I do not have SAS installed locally so my local computer does not show up on the server list. Does anyone know how I can move the graph files (.png) to my local computer using EG? Thanks. Code I am using is: ods listing gpath='/mnt/Projects/amin-sid'; ods graphics on; proc sgplot data=HospLevelData2 noautolegend; scatter x=totcost_mean y=los_mean; xaxis label='Mean total cost'; symbol1 value=dot h=1; title 'Mean LOS vs. cost, hospital-level'; run; ods graphics off;
... View more