<?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 SGPANEL binwidth/binstart not applying in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/410017#M26282</link>
    <description>&lt;P&gt;I fixed it by adding 0.0001 to my binwidth. so my code went from&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgpanel data = subjectlevel;&lt;BR /&gt; panelby class;&lt;BR /&gt; histogram score/ binwidth = 2.5 binstart = 1.25;&lt;BR /&gt; colaxis values = (0 to 50 by 5);&lt;BR /&gt;run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgpanel data = subjectlevel;
 panelby class;
 histogram score/ binwidth = 2.5001 binstart = 1.25;
 colaxis values = (0 to 50 by 5);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;...&lt;/P&gt;</description>
    <pubDate>Thu, 02 Nov 2017 21:11:31 GMT</pubDate>
    <dc:creator>bemiller</dc:creator>
    <dc:date>2017-11-02T21:11:31Z</dc:date>
    <item>
      <title>PROC SGPANEL binwidth/binstart not applying</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/409949#M26274</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create some basic histograms using proc sgpanel and I am having trouble with the binwidth and binstart options. On some of the graphs I create, one panel will not follow the width and starting point specified. For example, I have four panels on a graph, three of which start at the point identified (1.25) with binstart and have the appropriate width (2.5), but the last one has widths twice as big (5) and starts at a different point (0).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgpanel data = subjectlevel;
	panelby class;
	histogram score/ binwidth = 2.5 binstart = 1.25;
	colaxis values = (0 to 50 by 5);
run;	&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/16381iBEFD11076FC98563/image-size/medium?v=1.0&amp;amp;px=-1" border="0" width="400" height="398" title="graph.png" alt="graph.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to fix this problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 17:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/409949#M26274</guid>
      <dc:creator>bemiller</dc:creator>
      <dc:date>2017-11-02T17:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL binwidth/binstart not applying</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/409980#M26278</link>
      <description>&lt;P&gt;You might look at the actual values of your score variable for the fourth value of the panelby variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect some combination of values and intervals between values of the score variable are causing a problem.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 19:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/409980#M26278</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-02T19:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL binwidth/binstart not applying</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/409991#M26280</link>
      <description>&lt;P&gt;For all of the groups, the scores are whole numbers, and the fourth group specifically has 10% of the data from 0-2 (so where the first bin should be).&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 19:52:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/409991#M26280</guid>
      <dc:creator>bemiller</dc:creator>
      <dc:date>2017-11-02T19:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPANEL binwidth/binstart not applying</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/410017#M26282</link>
      <description>&lt;P&gt;I fixed it by adding 0.0001 to my binwidth. so my code went from&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgpanel data = subjectlevel;&lt;BR /&gt; panelby class;&lt;BR /&gt; histogram score/ binwidth = 2.5 binstart = 1.25;&lt;BR /&gt; colaxis values = (0 to 50 by 5);&lt;BR /&gt;run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgpanel data = subjectlevel;
 panelby class;
 histogram score/ binwidth = 2.5001 binstart = 1.25;
 colaxis values = (0 to 50 by 5);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;...&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 21:11:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-SGPANEL-binwidth-binstart-not-applying/m-p/410017#M26282</guid>
      <dc:creator>bemiller</dc:creator>
      <dc:date>2017-11-02T21:11:31Z</dc:date>
    </item>
  </channel>
</rss>

