<?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 SGPLOT: X axis values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526435#M143359</link>
    <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;I need to change the x axis values to be equal the y axis values for example max x =0.6 and max y=0.6 on the regression plot in sas&lt;/P&gt;&lt;P&gt;Here is my code&lt;/P&gt;&lt;P&gt;could anyone advise with this as this code keep giveing me errors&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=calibration;&lt;BR /&gt;reg x=x1 y=y / CLM CLI;&lt;BR /&gt;haxis=axis1 hmax=0.6;&lt;BR /&gt;vaxis=axis2 vminor=0.6;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Jan 2019 17:42:35 GMT</pubDate>
    <dc:creator>shahd</dc:creator>
    <dc:date>2019-01-11T17:42:35Z</dc:date>
    <item>
      <title>SGPLOT: X axis values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526435#M143359</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;I need to change the x axis values to be equal the y axis values for example max x =0.6 and max y=0.6 on the regression plot in sas&lt;/P&gt;&lt;P&gt;Here is my code&lt;/P&gt;&lt;P&gt;could anyone advise with this as this code keep giveing me errors&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=calibration;&lt;BR /&gt;reg x=x1 y=y / CLM CLI;&lt;BR /&gt;haxis=axis1 hmax=0.6;&lt;BR /&gt;vaxis=axis2 vminor=0.6;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 17:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526435#M143359</guid>
      <dc:creator>shahd</dc:creator>
      <dc:date>2019-01-11T17:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT: X axis values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526439#M143360</link>
      <description>&lt;P&gt;There is no hmax option to the haxis statement; there is no haxis statement in PROC SGPLOT. You are also confusing PROC GPLOT code with PROC SGPLOT code, you can't do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=calibration;
    reg x=x1 y=y/clm cli;
    yaxis max=0.6;
    xaxis max=0.6;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please look at the documentation for all the available options in PROC SGPLOT.&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=n0yjdd910dh59zn1toodgupaj4v9.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=n0yjdd910dh59zn1toodgupaj4v9.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 18:36:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526439#M143360</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-11T18:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: SGPLOT: X axis values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526496#M143390</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/245357"&gt;@shahd&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi all&lt;/P&gt;
&lt;P&gt;I need to change the x axis values to be equal the y axis values for example max x =0.6 and max y=0.6 on the regression plot in sas&lt;/P&gt;
&lt;P&gt;Here is my code&lt;/P&gt;
&lt;P&gt;could anyone advise with this as this code keep giveing me errors&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=calibration;&lt;BR /&gt;reg x=x1 y=y / CLM CLI;&lt;BR /&gt;haxis=axis1 hmax=0.6;&lt;BR /&gt;vaxis=axis2 vminor=0.6;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;All of the device based older SAS/Graph statements like AXIS, SYMBOL and PATTERN are not used by the ODS graphics procedures. Also the axis statements are xaxis and yaxis. Xaxis2 and Yaxis2 will produce axis markings on the top or right side respectively. Many of the options are similar but not exactly the same plus there are some interesting new ones such as valuesformat that allows specifying a different format for the values displayed on the axis than might be assigned to the variable for data labels&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 20:57:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SGPLOT-X-axis-values/m-p/526496#M143390</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-11T20:57:13Z</dc:date>
    </item>
  </channel>
</rss>

