<?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: What is it called when variable response values are unequally distributed? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365235#M275118</link>
    <description>&lt;P&gt;You would still have a skewed distribution, but you could use the round function to adjust the salaries. e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data have;
  input salary;
  datalines;
11.53
11.48
12.10
12.49
12.74
12.75
;

data want;
  set have;
  round_salary=round(salary,0.5);
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2017 04:31:02 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2017-06-08T04:31:02Z</dc:date>
    <item>
      <title>What is it called when variable response values are unequally distributed?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365225#M275116</link>
      <description>&lt;P&gt;I have a variable for hourly earnings which respondents can answer with accuracy to the penny. So&amp;nbsp;the mean is like $27, but toward the bottom there is so much small variation in reporting, so it has one person at $11.61 one person at $11.63 two people at $11.67, etc.. but when you get&amp;nbsp;higher there's just clumps of people at $15.00 and $25.00.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if I graph it, the chart has&amp;nbsp;many more values at the low end and it skews the chart. Is there a way to automatically&amp;nbsp;recode them to all be in clumps increasing by $0.50 or something (without manually recoding hundreds of ranges)?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 03:25:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365225#M275116</guid>
      <dc:creator>fieldsa83</dc:creator>
      <dc:date>2017-06-08T03:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: What is it called when variable response values are unequally distributed?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365234#M275117</link>
      <description>&lt;P&gt;ROUND(variable, 0.50)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I thought that's what a histogram did? It bins it automatically?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 04:30:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365234#M275117</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-08T04:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: What is it called when variable response values are unequally distributed?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365235#M275118</link>
      <description>&lt;P&gt;You would still have a skewed distribution, but you could use the round function to adjust the salaries. e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data have;
  input salary;
  datalines;
11.53
11.48
12.10
12.49
12.74
12.75
;

data want;
  set have;
  round_salary=round(salary,0.5);
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 04:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-it-called-when-variable-response-values-are-unequally/m-p/365235#M275118</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-06-08T04:31:02Z</dc:date>
    </item>
  </channel>
</rss>

