<?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 Calling specific bar graphs from PROC FREQ in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775572#M246540</link>
    <description>&lt;P&gt;Hi there. I have the following proc freq procedure:&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;proc freq data=project;
tables gradind;
format gradind newh.;
tables quintile;
format quintile new.;
tables nsfasyn;
format nsfasyn $newn.;
tables nsfasyn*quintile*gradind/ plots=freqplot (twoway=cluster scale=percent) out=graphs5;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The graphs below are from the proc freq procedure:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nikster101_0-1634799550293.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64914i9BD75B29E33A4E66/image-dimensions/375x281?v=v2" width="375" height="281" role="button" title="Nikster101_0-1634799550293.png" alt="Nikster101_0-1634799550293.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nikster101_1-1634799562236.png" style="width: 371px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64915i811F496E5A02513C/image-dimensions/371x278?v=v2" width="371" height="278" role="button" title="Nikster101_1-1634799562236.png" alt="Nikster101_1-1634799562236.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How do I call the graph NSFASYN= NO FUNDING only into the proc sgplot prcedure? (or even the NSFASYN= FUNDING only). I have tried using the (where=(nsfasyn='No Funding')) in the sgplot statement but it did not work. Any ideas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=graphs5 (where=(nsfasyn='No Funding'));&lt;BR /&gt;vbar quintile/ group=gradind groupdisplay=cluster response=percent datalabel;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Oct 2021 07:04:43 GMT</pubDate>
    <dc:creator>Nikster101</dc:creator>
    <dc:date>2021-10-21T07:04:43Z</dc:date>
    <item>
      <title>Calling specific bar graphs from PROC FREQ</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775572#M246540</link>
      <description>&lt;P&gt;Hi there. I have the following proc freq procedure:&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;proc freq data=project;
tables gradind;
format gradind newh.;
tables quintile;
format quintile new.;
tables nsfasyn;
format nsfasyn $newn.;
tables nsfasyn*quintile*gradind/ plots=freqplot (twoway=cluster scale=percent) out=graphs5;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The graphs below are from the proc freq procedure:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nikster101_0-1634799550293.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64914i9BD75B29E33A4E66/image-dimensions/375x281?v=v2" width="375" height="281" role="button" title="Nikster101_0-1634799550293.png" alt="Nikster101_0-1634799550293.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nikster101_1-1634799562236.png" style="width: 371px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64915i811F496E5A02513C/image-dimensions/371x278?v=v2" width="371" height="278" role="button" title="Nikster101_1-1634799562236.png" alt="Nikster101_1-1634799562236.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How do I call the graph NSFASYN= NO FUNDING only into the proc sgplot prcedure? (or even the NSFASYN= FUNDING only). I have tried using the (where=(nsfasyn='No Funding')) in the sgplot statement but it did not work. Any ideas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=graphs5 (where=(nsfasyn='No Funding'));&lt;BR /&gt;vbar quintile/ group=gradind groupdisplay=cluster response=percent datalabel;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 07:04:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775572#M246540</guid>
      <dc:creator>Nikster101</dc:creator>
      <dc:date>2021-10-21T07:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Calling specific bar graphs from PROC FREQ</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775784#M246629</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I have tried using the (where=(nsfasyn='No Funding')) in the sgplot statement but it did not work&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There's no reason it shouldn't work. Is that the correct value (including case)? What does the log report read?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 22:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775784#M246629</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-10-21T22:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calling specific bar graphs from PROC FREQ</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775985#M246695</link>
      <description>&lt;P&gt;It did not generate a log, I am unsure of what happened. When I took out the where statement it generated the log and output graph&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 22:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calling-specific-bar-graphs-from-PROC-FREQ/m-p/775985#M246695</guid>
      <dc:creator>Nikster101</dc:creator>
      <dc:date>2021-10-22T22:34:14Z</dc:date>
    </item>
  </channel>
</rss>

