<?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: primary bar chart, and a bar chart that drills down to a more detailed table in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278329#M9905</link>
    <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#gr08ods2-ex.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#gr08ods2-ex.htm&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Jun 2016 23:29:57 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-06-17T23:29:57Z</dc:date>
    <item>
      <title>primary bar chart, and a bar chart that drills down to a more detailed table</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278302#M9904</link>
      <description>&lt;P&gt;I am required to create a bar chart that drills down to a more detailed table. On the primary bar chart, i need to display the means of my dependent variable for each level of&amp;nbsp;my independent variable. my independent variable is size, my dependent variable is rev. I do not know how to do with the primary bar chart, and struggle to do the second step for the "drils down". Any advice? Thanks.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data locrev;
	length Size State $ 8;
	format Rev dollar12.;  
	input Size State Rev;
	datalines;
big OH 136360000
big OR 189880000
small WA 145230
middle IL 1803800
small IN 136110
middle OH 1108400
middle MI 1966000
big FL 145410000
small GA 190220
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 19:32:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278302#M9904</guid>
      <dc:creator>Bal23</dc:creator>
      <dc:date>2016-06-17T19:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: primary bar chart, and a bar chart that drills down to a more detailed table</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278329#M9905</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#gr08ods2-ex.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#gr08ods2-ex.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 23:29:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278329#M9905</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-17T23:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: primary bar chart, and a bar chart that drills down to a more detailed table</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278385#M9906</link>
      <description>&lt;P&gt;Thank you. That is helpful. But first, I need to create the primary bar chart to display the means of my dependent variable for each level of my independent variable&amp;nbsp; , that I do not know&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc gchart data=have;
   vbar3d size/ sumvar=rev patternid=midpoint html=rpt;
   type=mean
run;
quit;
          &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;243 run;&lt;/P&gt;&lt;P&gt;The error message show "type=mean" is wrong. But&amp;nbsp; I need to display the mean. Any advice?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2016 14:42:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278385#M9906</guid>
      <dc:creator>Bal23</dc:creator>
      <dc:date>2016-06-18T14:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: primary bar chart, and a bar chart that drills down to a more detailed table</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278391#M9907</link>
      <description>&lt;P&gt;Check the syntax for your code. &amp;nbsp;The " ; " should come after the TYPE option.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2016 15:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278391#M9907</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2016-06-18T15:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: primary bar chart, and a bar chart that drills down to a more detailed table</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278474#M9910</link>
      <description>&lt;P&gt;I added ;&lt;/P&gt;&lt;P&gt;but then there is a warning message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;no output destinations active&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how should i modify my code so that I can generate this primary bar chart that displays the means of my dependent vars for each level of my independent vars?&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jun 2016 14:36:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278474#M9910</guid>
      <dc:creator>Bal23</dc:creator>
      <dc:date>2016-06-19T14:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: primary bar chart, and a bar chart that drills down to a more detailed table</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278484#M9911</link>
      <description>&lt;P&gt;All output goes to the open destinations. &amp;nbsp;Starting with SAS 9.3, the ODS HTML destination is open by default. &amp;nbsp;You can open / close the&amp;nbsp;destinations. &amp;nbsp;You are getting this log message because you have (somehow) closed all destinations. &amp;nbsp;Use "ODS HTML;" or "ODS LISTING;" to open these destinations before submitting your procedure code. &amp;nbsp;Various options can be specified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is plenty of documentation for this in SAS or can be found using&amp;nbsp;Google.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/viewer.htm#a002262505.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/viewer.htm#a002262505.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/sassamples/graphgallery/PROC_GCHART.html" target="_blank"&gt;https://support.sas.com/sassamples/graphgallery/PROC_GCHART.html&lt;/A&gt; - click on a graph to view the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jun 2016 15:37:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/primary-bar-chart-and-a-bar-chart-that-drills-down-to-a-more/m-p/278484#M9911</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2016-06-19T15:37:51Z</dc:date>
    </item>
  </channel>
</rss>

