<?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: 'Other' appeared on Pie Chart in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558833#M156000</link>
    <description>Thank you, great overview &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
    <pubDate>Wed, 15 May 2019 08:23:52 GMT</pubDate>
    <dc:creator>SIgnificatif</dc:creator>
    <dc:date>2019-05-15T08:23:52Z</dc:date>
    <item>
      <title>'Other' appeared on Pie Chart</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558629#M155916</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;When using charts, I have noticed a slice with 'other' label on it , it's&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;otherlabel=&lt;/PRE&gt;&lt;P&gt;in the code ( code generated with EG)&lt;BR /&gt;&lt;BR /&gt;I would like to ask you how this happened because there is no variable with that name I entered, there are 4 variables and this one was not included.&lt;BR /&gt;&lt;BR /&gt;Are there ways to force to clarify this 'slice' and how to fix it ..&lt;BR /&gt;&lt;BR /&gt;Thank you for response.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2019 14:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558629#M155916</guid>
      <dc:creator>SIgnificatif</dc:creator>
      <dc:date>2019-05-14T14:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: 'Other' appeared on Pie Chart</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558682#M155933</link>
      <description>&lt;P&gt;&lt;FONT size="2"&gt;OTHER= &lt;SPAN class="userSuppliedValue"&gt;percent-of-total &lt;/SPAN&gt;&lt;SPAN class="shortDescription"&gt;collects all midpoints with chart statistic values less than or equal to &lt;SPAN class="userSuppliedValue"&gt;percent-of-total&lt;/SPAN&gt; into a generic midpoint named OTHER.&lt;/SPAN&gt; &lt;SPAN class="paraSimpleFirst"&gt;The value of &lt;SPAN class="userSuppliedValue"&gt;percent-of-total&lt;/SPAN&gt; can be 0 to 100; the default value is 4. Therefore, any slice that represents 4% or less of the total is put in the OTHER category. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;The OTHER slice is the last slice in the pie, regardless of the order of the slices. (In other words, it is the slice immediately before the starting slice.)&lt;/FONT&gt;&lt;FONT size="2"&gt;If only one midpoint falls into the OTHER category, its slice is displayed in its normal position in the pie and retains its original label. For example, suppose a pie has these slices and percent values: Coal 35%, Gas 15%, Hydro 5%, and Oil 45%. If you specify OTHER=5, Hydro remains the third slice instead of becoming the last slice.&lt;/FONT&gt;&lt;/P&gt;&lt;DIV class="paraSimple"&gt;&lt;FONT size="2"&gt;&lt;SPAN class="summaryNote"&gt;Note:&lt;/SPAN&gt;If you specify a small value for &lt;SPAN class="userSuppliedValue"&gt;percent-of-total&lt;/SPAN&gt;, the GCHART procedure might not be able to label all of the small slices.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&lt;FONT size="2"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/65389/HTML/default/viewer.htm#p13h0w5vhbfvern1a23b0f3lvfyh.htm" target="_self"&gt;http://support.sas.com/documentation/cdl/en/graphref/65389/HTML/default/viewer.htm#p13h0w5vhbfvern1a23b0f3lvfyh.htm&lt;/A&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&lt;FONT size="2"&gt;To eliminate the 'Other' slice see the example provided:&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&lt;PRE&gt;&lt;FONT size="3"&gt;&lt;CODE class=" language-sas"&gt;proc gchart data=sashelp.cars;
     pie type / other=0
     midpoints="Truck" "SUV" "Sedan" "Wagon" "Sports" "Hybrid"
     value=none
     percent=arrow
     slice=arrow
     noheading;
     run;
quit; &lt;/CODE&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&lt;FONT size="2"&gt;OTHER=0 specifies that all midpoints, no matter how small, display a slice (instead of getting lumped into an 'Other' slice.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="paraSimple"&gt;&lt;FONT size="2"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/65389/HTML/default/viewer.htm#n0ejmrdm6ov3ton1gx1tsuuxd1ca.htm" target="_self"&gt;http://support.sas.com/documentation/cdl/en/graphref/65389/HTML/default/viewer.htm#n0ejmrdm6ov3ton1gx1tsuuxd1ca.htm&lt;/A&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2019 16:21:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558682#M155933</guid>
      <dc:creator>tsap</dc:creator>
      <dc:date>2019-05-14T16:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: 'Other' appeared on Pie Chart</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558833#M156000</link>
      <description>Thank you, great overview &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 15 May 2019 08:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Other-appeared-on-Pie-Chart/m-p/558833#M156000</guid>
      <dc:creator>SIgnificatif</dc:creator>
      <dc:date>2019-05-15T08:23:52Z</dc:date>
    </item>
  </channel>
</rss>

