<?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: Using gplot or pareto? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315079#M61611</link>
    <description>&lt;P&gt;OI don't have Pareto installed, I just found the fact. So I have to use SGPLOT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The goal is&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The bar chart portion is to plot the individual percentages in each group.&lt;/LI&gt;&lt;LI&gt;The line chart portion is used to plot the cumulative percentages in each group.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2016 04:02:16 GMT</pubDate>
    <dc:creator>sas_newbie3</dc:creator>
    <dc:date>2016-11-29T04:02:16Z</dc:date>
    <item>
      <title>Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/314661#M61566</link>
      <description>&lt;P&gt;I want to plot the following graph by a given dataset. I think may be using PROC PARETO. But I am not exactly sure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for code hint.&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6044i31E4DF65DBB03250/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Capture.PNG" title="Capture.PNG" /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 21:38:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/314661#M61566</guid>
      <dc:creator>sas_newbie3</dc:creator>
      <dc:date>2016-11-27T21:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/314684#M61568</link>
      <description>&lt;P&gt;You can use SGPLOT or Pareto, it's a matter of choice, assuming you have the SAS/QC and PROC PARETO available.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What exactly is your question though?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2016 00:15:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/314684#M61568</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-11-28T00:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/314720#M61570</link>
      <description>&lt;P&gt;You really should post it at ODS Graphic forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=sashelp.class noprint;
table age/out=freq outcum;
run;
data have;
 set freq;
 p=percent/100;
 cum_p=cum_pct/100;
format p cum_p percent7.2;

proc sgplot data=have;
vbar age/response=p nostatlabel fillattrs=graphdata2 legendlabel='percent';
vline age/response=cum_p markers datalabel legendlabel='cum percent';
yaxis label=' ';
keylegend  /across=1 position=right location=inside;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Nov 2016 03:58:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/314720#M61570</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-28T03:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315079#M61611</link>
      <description>&lt;P&gt;OI don't have Pareto installed, I just found the fact. So I have to use SGPLOT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The goal is&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The bar chart portion is to plot the individual percentages in each group.&lt;/LI&gt;&lt;LI&gt;The line chart portion is used to plot the cumulative percentages in each group.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 04:02:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315079#M61611</guid>
      <dc:creator>sas_newbie3</dc:creator>
      <dc:date>2016-11-29T04:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315080#M61612</link>
      <description>&lt;P&gt;So I have to calculate freq and cumulative percentage first on the given dataset?&lt;/P&gt;&lt;P&gt;The sashelp.class is just a demo example?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 04:03:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315080#M61612</guid>
      <dc:creator>sas_newbie3</dc:creator>
      <dc:date>2016-11-29T04:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315082#M61613</link>
      <description>&lt;P&gt;You can usually use the procs to do some summaries, but since you're needing two different statistics it's easier if you do it first yourself.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So yes, summarize the data using proc freq. SASHELP.CLASS is one of several demo dataset that almost all SAS installations will have. This allows others to run the same code and generate results. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 04:19:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315082#M61613</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-11-29T04:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315174#M61625</link>
      <description>&lt;PRE&gt;table age/out=freq outcum;&lt;/PRE&gt;&lt;P&gt;For this line code. What is outcum?&lt;/P&gt;&lt;P&gt;It is not used in the later code.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 13:08:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315174#M61625</guid>
      <dc:creator>sas_newbie3</dc:creator>
      <dc:date>2016-11-29T13:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using gplot or pareto?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315178#M61626</link>
      <description>&lt;PRE&gt;
output cumulative percent into table freq .

&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Nov 2016 13:35:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-gplot-or-pareto/m-p/315178#M61626</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-29T13:35:36Z</dc:date>
    </item>
  </channel>
</rss>

