<?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: how to make a 3D chart for categorical variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231741#M42187</link>
    <description>Thank you ! it perfectly works!!!</description>
    <pubDate>Mon, 26 Oct 2015 22:27:09 GMT</pubDate>
    <dc:creator>DingDing</dc:creator>
    <dc:date>2015-10-26T22:27:09Z</dc:date>
    <item>
      <title>how to make a 3D chart for categorical variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231739#M42185</link>
      <description>&lt;P&gt;how to make a 3D chart for categorical variable like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VARIABLE1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;A&amp;nbsp;&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know some the code like the following, but if the variable is a categorical, how to sum and&amp;nbsp;make a 3d pie chart?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;proc gchart data=a;
  pie3d YEAR / sumvar=CNT&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2015 22:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231739#M42185</guid>
      <dc:creator>DingDing</dc:creator>
      <dc:date>2015-10-26T22:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a 3D chart for categorical variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231740#M42186</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
	proc gchart data=sashelp.class;
	pie3d sex /type=freq;
	run;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Assuming you want the proportions to be the count of your categorical variable change the options, type=freq instead of sumvar=cnt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2015 22:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231740#M42186</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-10-26T22:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a 3D chart for categorical variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231741#M42187</link>
      <description>Thank you ! it perfectly works!!!</description>
      <pubDate>Mon, 26 Oct 2015 22:27:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231741#M42187</guid>
      <dc:creator>DingDing</dc:creator>
      <dc:date>2015-10-26T22:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a 3D chart for categorical variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231745#M42188</link>
      <description>hI Reeza, one more question, If I want to explode A in this case, how to do?</description>
      <pubDate>Mon, 26 Oct 2015 22:39:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231745#M42188</guid>
      <dc:creator>DingDing</dc:creator>
      <dc:date>2015-10-26T22:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a 3D chart for categorical variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231754#M42196</link>
      <description>&lt;P&gt;RTM:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add the following option to the PIE3D statement, EXPLODE='A'&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc gchart data=sashelp.class;
pie3d sex/type=freq explode='F';
run; quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2015 00:30:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231754#M42196</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-10-27T00:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a 3D chart for categorical variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231774#M42205</link>
      <description>thanks Reeza, but explode='A' doesn't work, I don't know why</description>
      <pubDate>Tue, 27 Oct 2015 07:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-a-3D-chart-for-categorical-variable/m-p/231774#M42205</guid>
      <dc:creator>DingDing</dc:creator>
      <dc:date>2015-10-27T07:56:47Z</dc:date>
    </item>
  </channel>
</rss>

