<?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: Histogram Limited To Subset of Data? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283136#M59231</link>
    <description>&lt;P&gt;Thanks Jan! &amp;nbsp;Wow, was that easy, or what?! &amp;nbsp;Beautiful!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 09 Jul 2016 09:47:10 GMT</pubDate>
    <dc:creator>NKormanik</dc:creator>
    <dc:date>2016-07-09T09:47:10Z</dc:date>
    <item>
      <title>Histogram Limited To Subset of Data?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283122#M59227</link>
      <description>&lt;P&gt;I'd like to cut off really long tails from a histogram.&amp;nbsp; There are a few outliers at either side.&amp;nbsp; Histogram shows everything bunched up in the very middle, as a result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS instructions are sorta crazy.&amp;nbsp; A zillion options.&amp;nbsp; But I can't find the option for this need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd like to ONLY histogram data between, say, 100 and 300.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could create a new dataset, as needed.&amp;nbsp; But I'm hoping there is a more direct approach, by using some option on the histogram line, or in the univariate line.&amp;nbsp; Or maybe some other ingenious way?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nicholas Kormanik&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jul 2016 07:52:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283122#M59227</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2016-07-09T07:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram Limited To Subset of Data?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283123#M59228</link>
      <description>&lt;P&gt;Usually you can control the number and values of your midpoints. If you'd like to share your data and your current attempt and results we may be better able to help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards, Jan.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jul 2016 07:59:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283123#M59228</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2016-07-09T07:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram Limited To Subset of Data?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283125#M59229</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=have;
var N;
histogram;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Data range from 1 to 4000. &amp;nbsp;Mean=200. &amp;nbsp;Total rows=A million.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The early numbers are bogus, as are the high numbers. &amp;nbsp;I'd like to cut those off, and just see a histogram of the stuff in the middle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best would be to cut off via standard deviation, + or - one sd.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it would be okay to use actual values, histogram values between 100 and 300.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jul 2016 08:21:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283125#M59229</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2016-07-09T08:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram Limited To Subset of Data?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283128#M59230</link>
      <description>&lt;P&gt;Easiest way out would be to add&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where N between 100 and 300;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;- Jan.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jul 2016 08:40:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283128#M59230</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2016-07-09T08:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Histogram Limited To Subset of Data?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283136#M59231</link>
      <description>&lt;P&gt;Thanks Jan! &amp;nbsp;Wow, was that easy, or what?! &amp;nbsp;Beautiful!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jul 2016 09:47:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Histogram-Limited-To-Subset-of-Data/m-p/283136#M59231</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2016-07-09T09:47:10Z</dc:date>
    </item>
  </channel>
</rss>

