<?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: Changing the Default Levels Algorithm in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195369#M305173</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just ended up formatting my own bins and manipulating the data to be per 10,000 instead of per capita. Thanks for the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2015 16:33:31 GMT</pubDate>
    <dc:creator>michelconn</dc:creator>
    <dc:date>2015-03-06T16:33:31Z</dc:date>
    <item>
      <title>Changing the Default Levels Algorithm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195365#M305169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all I had a question about how to change the default levels algorithm or suggestions on how to better represent my data. I have some data that has a very large positive skew and I want to map frequencies per county on my state. I feel as if using the default levels algorithm is really misrepresenting my data and wanted to change the default levels algorithm to perhaps logarithmic. Does any one know how to do that or have suggestions on how to better represent the data? Below is the code I am using to create the map. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pattern1 v=s c=CXFFFFFF;&lt;/P&gt;&lt;P&gt;*pattern2 v=s c=CXC3E9FF;&lt;/P&gt;&lt;P&gt;pattern2 v=s c=CX87D3FF;&lt;/P&gt;&lt;P&gt;*pattern4 v=s c=CX4BBDFF;&lt;/P&gt;&lt;P&gt;pattern3 v=s c=CX0FA7FF;&lt;/P&gt;&lt;P&gt;pattern4 v=s c=CX0085D2;&lt;/P&gt;&lt;P&gt;pattern5 v=s c=CX005F96;&lt;/P&gt;&lt;P&gt;legend1 across=1&lt;/P&gt;&lt;P&gt; cborder=black&lt;/P&gt;&lt;P&gt; position=(bottom left inside)&lt;/P&gt;&lt;P&gt; mode=protect&lt;/P&gt;&lt;P&gt; label=(h=1 position=top justify=center f=simplex)&lt;/P&gt;&lt;P&gt; offset=(4pct)&lt;/P&gt;&lt;P&gt; shape=bar(2,1);&lt;/P&gt;&lt;P&gt; title h=2 f=duplex 'Number Per County';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gmap data=pro.Per_capita map=pro.state;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; id county;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; choro count / levels=5 alg=logarithmic&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; legend=legend1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; coutline=black;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 18:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195365#M305169</guid>
      <dc:creator>michelconn</dc:creator>
      <dc:date>2015-03-05T18:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the Default Levels Algorithm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195366#M305170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at your data with something such as proc freq and pick likely points to use the MIDPOINTS option instead of LEVEL. Midpoint values are set by you and do not have to be equal intervals.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 21:07:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195366#M305170</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-03-05T21:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the Default Levels Algorithm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195367#M305171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response I had considered that or setting up my own formatted bins. I also have some data that is a little messy and will be slightly difficult to set up bins or midpoints (tiny decimals) for so I has hoping for a more automated way. But if that is my best bet I'll go for it. Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 02:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195367#M305171</guid>
      <dc:creator>michelconn</dc:creator>
      <dc:date>2015-03-06T02:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the Default Levels Algorithm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195368#M305172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It isn't trivial but not terribly difficult to summarize the data using something like Proc Summary and get some percentile points that could be placed into macro variables for use as the midpoint values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 15:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195368#M305172</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-03-06T15:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the Default Levels Algorithm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195369#M305173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just ended up formatting my own bins and manipulating the data to be per 10,000 instead of per capita. Thanks for the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-Default-Levels-Algorithm/m-p/195369#M305173</guid>
      <dc:creator>michelconn</dc:creator>
      <dc:date>2015-03-06T16:33:31Z</dc:date>
    </item>
  </channel>
</rss>

