<?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: adjusting y-axis values in histogram statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711975#M219404</link>
    <description>&lt;P&gt;You can control that from the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=n0n6uml63c6h8dn16phbd1arm9g9.htm&amp;amp;locale=en" target="_self"&gt;YAXIS Statement&lt;/A&gt;. Which values do you want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 17 Jan 2021 17:45:54 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2021-01-17T17:45:54Z</dc:date>
    <item>
      <title>adjusting y-axis values in histogram statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711973#M219402</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SGPLOT DATA= nt;
HISTOGRAM var1/GROUP=var2 TRANSPARENCY=.5 ;RUN;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am trying to create a histogram and want to specify the y-axis tick marks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 17:31:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711973#M219402</guid>
      <dc:creator>lillymaginta1</dc:creator>
      <dc:date>2021-01-17T17:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: adjusting y-axis values in histogram statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711975#M219404</link>
      <description>&lt;P&gt;You can control that from the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=n0n6uml63c6h8dn16phbd1arm9g9.htm&amp;amp;locale=en" target="_self"&gt;YAXIS Statement&lt;/A&gt;. Which values do you want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 17:45:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711975#M219404</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-17T17:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: adjusting y-axis values in histogram statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711976#M219405</link>
      <description>&lt;P&gt;thank you I tried the following statement&amp;nbsp; but I got an error :&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SGPLOT DATA= nt;

HISTOGRAMvar1/GROUP=var2 TRANSPARENCY=.5 yaxis= (1 2 3 4 5 6);RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 18:15:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711976#M219405</guid>
      <dc:creator>lillymaginta1</dc:creator>
      <dc:date>2021-01-17T18:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: adjusting y-axis values in histogram statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711977#M219406</link>
      <description>&lt;P&gt;See if you can use this as a template&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class;
   histogram age;
   yaxis values = (1 2 3 4 5 6);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 18:23:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/711977#M219406</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-17T18:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: adjusting y-axis values in histogram statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/712132#M219476</link>
      <description>&lt;P&gt;thank you, the following worked:&amp;nbsp;&lt;/P&gt;
&lt;PRE style="vertical-align: baseline;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: teal; background: white;"&gt;yaxis min=0 max=6;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Jan 2021 15:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/712132#M219476</guid>
      <dc:creator>lillymaginta1</dc:creator>
      <dc:date>2021-01-18T15:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: adjusting y-axis values in histogram statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/712133#M219477</link>
      <description>Im glad. Please remember to close the thread &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Mon, 18 Jan 2021 15:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusting-y-axis-values-in-histogram-statement/m-p/712133#M219477</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-18T15:11:06Z</dc:date>
    </item>
  </channel>
</rss>

