<?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: Proc Gchart PIE3D format overriding Proc Format ? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111645#M4212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I apologize for being so slow to respond ... when things get fired up around here, it's not until the drive home do I remember. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The data ranges can be anywhere from 0.00 to 100.00 although 0 and 100 are almost never seen.&amp;nbsp; The range I'm working with is, roughly, 1.6 to 55.8 and one pesky value of 0.81.&amp;nbsp; I cannot get it to round up, attach to the (0&amp;lt;1) in the PROC Format Picture code, which I'm not sure I'm using correctly since none of the other values pay attention to it either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I recently discovered we are missing a "hot fix" (?) or something that includes rounding.&amp;nbsp; We are going to be moving to 9.3 ...........soon.&amp;nbsp; Any day now.&amp;nbsp; If that doesn't correct the problem, which I'm optimistically sure it will, I'll have to figure out how to make something else work.&amp;nbsp; The problem is temporarily on the back-burner, however .... if anyone can advise on using the "other" option in PROC GCHART with a 3D Pie chart and/or correct use of PROC Format Picture, I would be very appreciative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v/r&lt;/P&gt;&lt;P&gt;Paige&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 May 2012 12:04:35 GMT</pubDate>
    <dc:creator>PaigeW</dc:creator>
    <dc:date>2012-05-25T12:04:35Z</dc:date>
    <item>
      <title>Proc Gchart PIE3D format overriding Proc Format ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111643#M4210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using PROC GCHART - PIE3D and have problems with data values between 1 and 0.&amp;nbsp; No matter how I try to affect the formating, the slice comes out as 0% or .81.&amp;nbsp; I've tried OTHER=# to group such values into "Other" or Proc Format picture with (round fuzz=#) to round up and label accordingly.&amp;nbsp; Neither is working, so clearly there something wrong in how I'm trying to do this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are the relevant code snippets:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* first, tried the following, adding OTHER=# in PROC GCHART */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC FORMAT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PICTURE pctfmt (ROUND FUZZ=.5)&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* didn't round up, so tried the following - after commenting out the OTHER=# option */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC FORMAT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; PICTURE pctfmt (ROUND)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 0-&amp;lt;1 = "(&amp;lt;1%)"(noedit)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 1-&amp;lt;9.9 = "09.0%)" (prefix="(")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 10-&amp;lt;99.9 = "099.0%)" (prefix="(")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 99.9-100 = "(&amp;gt;99%)" (noedit);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* with the following */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC GCHART DATA = PWSAS.DATA_TEST2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PIE3D Dog_Breed / type = freq&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUMVAR = percent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOLEGEND&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ANGLE = 90&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OTHER = 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SLICE = arrow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MIDPOINT = 'Pug' 'French Bull Dog' 'Boxer' 'Mastiff' ... 'Other';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUE = outside&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOHEADING;&lt;/P&gt;&lt;P&gt;format percent pctfmt.;&lt;/P&gt;&lt;P&gt;Title "Breed Groups in the area:;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get one slice that is either 0% or .81.&amp;nbsp; Do not ever get an "other" slice or the breed label with a value = "&amp;lt;1%". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What have I overlooked or forgotten?&amp;nbsp; It seems that something inside PROC GCHART is over-riding the formatting I wish to use. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, Paige&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2012 12:28:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111643#M4210</guid>
      <dc:creator>PaigeW</dc:creator>
      <dc:date>2012-05-11T12:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Gchart PIE3D format overriding Proc Format ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111644#M4211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you post up the data values you're using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 13:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111644#M4211</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-05-14T13:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Gchart PIE3D format overriding Proc Format ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111645#M4212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I apologize for being so slow to respond ... when things get fired up around here, it's not until the drive home do I remember. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The data ranges can be anywhere from 0.00 to 100.00 although 0 and 100 are almost never seen.&amp;nbsp; The range I'm working with is, roughly, 1.6 to 55.8 and one pesky value of 0.81.&amp;nbsp; I cannot get it to round up, attach to the (0&amp;lt;1) in the PROC Format Picture code, which I'm not sure I'm using correctly since none of the other values pay attention to it either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I recently discovered we are missing a "hot fix" (?) or something that includes rounding.&amp;nbsp; We are going to be moving to 9.3 ...........soon.&amp;nbsp; Any day now.&amp;nbsp; If that doesn't correct the problem, which I'm optimistically sure it will, I'll have to figure out how to make something else work.&amp;nbsp; The problem is temporarily on the back-burner, however .... if anyone can advise on using the "other" option in PROC GCHART with a 3D Pie chart and/or correct use of PROC Format Picture, I would be very appreciative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v/r&lt;/P&gt;&lt;P&gt;Paige&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2012 12:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111645#M4212</guid>
      <dc:creator>PaigeW</dc:creator>
      <dc:date>2012-05-25T12:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Gchart PIE3D format overriding Proc Format ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111646#M4213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you provide some sample data that demonstrates the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure you want to use type=freq (counting up how many obsns in each slice)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could provide some sample data, and tell us what you want the graph to show ... we can probably come up with several ways to accomplish that &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2012 15:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-Gchart-PIE3D-format-overriding-Proc-Format/m-p/111646#M4213</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-05-25T15:58:38Z</dc:date>
    </item>
  </channel>
</rss>

