<?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: Histograms in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15795#M310</link>
    <description>Suggest starting here with a Google advanced search argument on the SAS.COM site.  &lt;BR /&gt;
&lt;BR /&gt;
histograms site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Consider using SAS ODS for generating an image file such as a GIF.&lt;BR /&gt;
&lt;BR /&gt;
The SAS support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website has much to offer with SAS-hosted documentation, code samples, and supplemental topic-related reference papers.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
    <pubDate>Thu, 12 Nov 2009 14:36:44 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-11-12T14:36:44Z</dc:date>
    <item>
      <title>Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15794#M309</link>
      <description>Hi,&lt;BR /&gt;
1) I'm looking for a procedure where I can make Histograms that aren't evenly spaced (say 0-100,100-500,500-10,0,1000-3500)&lt;BR /&gt;
&lt;BR /&gt;
2) In proc univariate histogram statment - can I add graphic options- such as the graph's color etc.? Can I save it to a GIF file?&lt;BR /&gt;
&lt;BR /&gt;
Thanks!</description>
      <pubDate>Thu, 12 Nov 2009 07:57:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15794#M309</guid>
      <dc:creator>tal83</dc:creator>
      <dc:date>2009-11-12T07:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15795#M310</link>
      <description>Suggest starting here with a Google advanced search argument on the SAS.COM site.  &lt;BR /&gt;
&lt;BR /&gt;
histograms site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Consider using SAS ODS for generating an image file such as a GIF.&lt;BR /&gt;
&lt;BR /&gt;
The SAS support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website has much to offer with SAS-hosted documentation, code samples, and supplemental topic-related reference papers.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 12 Nov 2009 14:36:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15795#M310</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-11-12T14:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15796#M311</link>
      <description>The easiest way I can think of to control the spacing (aka "bucketing" or "binning") in a histogram, is to create a user-defined format.  The following example creates some fake/random data to demonstrate gchart's automatic binning (with levels=4), and then using a user-defined format (which I call 'myfmt') to make the bins exactly the way you want them ...&lt;BR /&gt;
&lt;BR /&gt;
data foo;&lt;BR /&gt;
 do i = 1 to 1000;&lt;BR /&gt;
  value = 500 + 300*rannor(1);&lt;BR /&gt;
  output;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
title "Using default gchart ranges";&lt;BR /&gt;
proc gchart data=foo;&lt;BR /&gt;
vbar value / type=freq levels=4;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc format;&lt;BR /&gt;
value myfmt&lt;BR /&gt;
low-&amp;lt;100 = 'less than 100'&lt;BR /&gt;
100-500 = '100-500'&lt;BR /&gt;
500-1000 = '500-1000'&lt;BR /&gt;
1000&amp;lt;-high = 'over 1000'&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
title "Controlling ranges with user-defined format";&lt;BR /&gt;
proc gchart data=foo;&lt;BR /&gt;
format value myfmt.;&lt;BR /&gt;
vbar value / type=freq discrete;&lt;BR /&gt;
run;

Message was edited by: Robert Allison @ SAS</description>
      <pubDate>Thu, 12 Nov 2009 15:27:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15796#M311</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-11-12T15:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15797#M312</link>
      <description>fixed it!

Message was edited by: Robert Allison @ SAS</description>
      <pubDate>Thu, 12 Nov 2009 15:28:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15797#M312</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-11-12T15:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15798#M313</link>
      <description>fixed it!

Message was edited by: Robert Allison @ SAS</description>
      <pubDate>Thu, 12 Nov 2009 15:31:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15798#M313</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-11-12T15:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15799#M314</link>
      <description>Bookmark this page:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=27609" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=27609&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 12 Nov 2009 15:40:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15799#M314</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-11-12T15:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15800#M315</link>
      <description>Thanks for the tip, sbb!&lt;BR /&gt;
&lt;BR /&gt;
I had to use the special character for the LT !</description>
      <pubDate>Thu, 12 Nov 2009 15:45:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15800#M315</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-11-12T15:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Histograms</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15801#M316</link>
      <description>Thanks everybody!</description>
      <pubDate>Sun, 15 Nov 2009 10:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Histograms/m-p/15801#M316</guid>
      <dc:creator>tal83</dc:creator>
      <dc:date>2009-11-15T10:56:08Z</dc:date>
    </item>
  </channel>
</rss>

