<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How can I save a graph with 600 dpi as a JPG in my laptop? in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932067#M1908</link>
    <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I did a plot using the procedure SGPLOT but I wouldn't say I liked the resolution when I put in my docs. I want to know how I can save my graph in my laptop with 600 dpi as a JPG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using&amp;nbsp;SAS® OnDemand for Academics and my node is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=PCA aspect=1;&lt;BR /&gt;styleattrs datasymbols=(trianglefilled circlefilled squarefilled plus)&lt;BR /&gt;datacontrastcolors=(crimson bioy blueviolet darkgreen dodgerblue);&lt;BR /&gt;scatter x=Prin1 y=Prin2 / group=Adubo_clone markerattrs=(size=10px);&lt;BR /&gt;xaxis min=-2.5 max=2.5 label="Component 1 (23,51%)";&lt;BR /&gt;yaxis min=-2 max=2 label="Component 2 (21,91%)";&lt;BR /&gt;keylegend / location=outside position=right titleattrs=(weght=bold size=9pt) valueattrs=(color=black size=9pt);&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jun 2024 21:45:39 GMT</pubDate>
    <dc:creator>josuerodrigues</dc:creator>
    <dc:date>2024-06-12T21:45:39Z</dc:date>
    <item>
      <title>How can I save a graph with 600 dpi as a JPG in my laptop?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932067#M1908</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I did a plot using the procedure SGPLOT but I wouldn't say I liked the resolution when I put in my docs. I want to know how I can save my graph in my laptop with 600 dpi as a JPG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using&amp;nbsp;SAS® OnDemand for Academics and my node is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=PCA aspect=1;&lt;BR /&gt;styleattrs datasymbols=(trianglefilled circlefilled squarefilled plus)&lt;BR /&gt;datacontrastcolors=(crimson bioy blueviolet darkgreen dodgerblue);&lt;BR /&gt;scatter x=Prin1 y=Prin2 / group=Adubo_clone markerattrs=(size=10px);&lt;BR /&gt;xaxis min=-2.5 max=2.5 label="Component 1 (23,51%)";&lt;BR /&gt;yaxis min=-2 max=2 label="Component 2 (21,91%)";&lt;BR /&gt;keylegend / location=outside position=right titleattrs=(weght=bold size=9pt) valueattrs=(color=black size=9pt);&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 21:45:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932067#M1908</guid>
      <dc:creator>josuerodrigues</dc:creator>
      <dc:date>2024-06-12T21:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: How can I save a graph with 600 dpi as a JPG in my laptop?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932069#M1909</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing gpath='c:\temp' image_dpi=600 ;
ods graphics on / outputfmt=jpg ;

proc sgplot data=sashelp.class(rename=(height=Prin1 weight=Prin2 sex=Adubo_clone)) aspect=1;
styleattrs datasymbols=(trianglefilled circlefilled squarefilled plus)
datacontrastcolors=(crimson bioy blueviolet darkgreen dodgerblue);
scatter x=Prin1 y=Prin2 / group=Adubo_clone markerattrs=(size=10px);
*xaxis min=-2.5 max=2.5 label="Component 1 (23,51%)";
*yaxis min=-2 max=2 label="Component 2 (21,91%)";
keylegend / location=outside position=right titleattrs=(weight=bold size=9pt) valueattrs=(color=black size=9pt);
run;

/* With the SG procedures and ODS Graphics, once you increase the resolution of your graphics output, */
/* you might start seeing java.lang.OutofMemoryError or a Java heap space memory error.               */
/* If you encounter this problem, see SAS Note 31184, which documents ways to address the issue by    */
/* changing your SAS configuration file.                                                              */

/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Usage Note 31184: &lt;BR /&gt;The error "java.lang.OutOfMemoryError: Java heap space" might occur when you use ODS Graphics with a large data set&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/31/184.html" target="_blank"&gt;https://support.sas.com/kb/31/184.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, Koen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 22:24:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932069#M1909</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-06-12T22:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I save a graph with 600 dpi as a JPG in my laptop?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932082#M1911</link>
      <description>&lt;P&gt;If you are running SAS On Demand then SAS is NOT running on your laptop, but on some computer that SAS has provided.&amp;nbsp; So your code will have to write the file on that server.&amp;nbsp; You can then use SAS/Studio to download the file to your laptop.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 03:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-can-I-save-a-graph-with-600-dpi-as-a-JPG-in-my-laptop/m-p/932082#M1911</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-06-13T03:58:07Z</dc:date>
    </item>
  </channel>
</rss>

