<?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 Re: Proc Gplot: Axis values in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101068#M28362</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Without any sample data/code, I created something...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;DATA HAVE;&lt;/P&gt;&lt;P&gt;DO I = 5000000 TO 25000000 BY 5000000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; REVENUE = I;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PROFIT = I/20;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OUTPUT;&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;DROP I;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROC FORMAT;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; VALUE BIG 5000000 = "5,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 10000000 = "10,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 15000000 = "15,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 20000000 = "20,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 25000000 = "25,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QUIT;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOPTIONS RESET = ALL;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL = (F = ARIAL H = 2 A = 90 "REVENUE" ) &lt;/P&gt;&lt;P&gt;&amp;nbsp; ORDER = (5000000 TO 25000000 BY 5000000) V = (F = ARIAL H = 1.5);&lt;/P&gt;&lt;P&gt;PROC GPLOT DATA = HAVE;&lt;/P&gt;&lt;P&gt;PLOT REVENUE * PROFIT/VAXIS = AXIS1;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FORMAT REVENUE BIG.;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;RUN;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Bascially, I think you may need to use some format.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Good luck!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Anca.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Aug 2013 15:33:28 GMT</pubDate>
    <dc:creator>AncaTilea</dc:creator>
    <dc:date>2013-08-05T15:33:28Z</dc:date>
    <item>
      <title>Proc Gplot: Axis values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101067#M28361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know how to change the axes values? I am plotting a series of scatterplots and when the numbers get too big sometimes they appear in scientific notation. How can I change that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unwanted Y-axis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" height="389" src="https://communities.sas.com/legacyfs/online/3963_pastedImage_0.png" width="518" /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Desired Y-Axis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" height="382" src="https://communities.sas.com/legacyfs/online/3964_pastedImage_1.png" width="511" /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 15:13:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101067#M28361</guid>
      <dc:creator>Greek</dc:creator>
      <dc:date>2013-08-05T15:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Gplot: Axis values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101068#M28362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Without any sample data/code, I created something...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;DATA HAVE;&lt;/P&gt;&lt;P&gt;DO I = 5000000 TO 25000000 BY 5000000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; REVENUE = I;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PROFIT = I/20;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OUTPUT;&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;DROP I;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROC FORMAT;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; VALUE BIG 5000000 = "5,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 10000000 = "10,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 15000000 = "15,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 20000000 = "20,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 25000000 = "25,000,000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QUIT;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOPTIONS RESET = ALL;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL = (F = ARIAL H = 2 A = 90 "REVENUE" ) &lt;/P&gt;&lt;P&gt;&amp;nbsp; ORDER = (5000000 TO 25000000 BY 5000000) V = (F = ARIAL H = 1.5);&lt;/P&gt;&lt;P&gt;PROC GPLOT DATA = HAVE;&lt;/P&gt;&lt;P&gt;PLOT REVENUE * PROFIT/VAXIS = AXIS1;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FORMAT REVENUE BIG.;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;RUN;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Bascially, I think you may need to use some format.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Good luck!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Anca.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 15:33:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101068#M28362</guid>
      <dc:creator>AncaTilea</dc:creator>
      <dc:date>2013-08-05T15:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Gplot: Axis values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101069#M28363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm guessing the the likely current format for your predicted variable is BEST8. You don't need a custom format COMMA12. should work for your displayed example.&lt;/P&gt;&lt;P&gt;If you aren't interested in the level of control an AXIS statement gives add&amp;nbsp; statements similar to:&lt;/P&gt;&lt;P&gt;Format minsalary comma12.;&lt;/P&gt;&lt;P&gt;label minsalary = 'Predicted';&lt;/P&gt;&lt;P&gt;to the proc statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 17:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101069#M28363</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-08-05T17:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Gplot: Axis values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101070#M28364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Formatting worked! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;Thank you all very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 22:16:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Gplot-Axis-values/m-p/101070#M28364</guid>
      <dc:creator>Greek</dc:creator>
      <dc:date>2013-08-05T22:16:46Z</dc:date>
    </item>
  </channel>
</rss>

