<?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: Quality Control (PROC PARETO) in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55357#M15405</link>
    <description>The code below works for me;  You had freq=_failures instead of failures.&lt;BR /&gt;
&lt;BR /&gt;
data failure;                                                                                                                           &lt;BR /&gt;
input ORGID $ SITEID $ ID $ FAILURES MTBF_HRS MTTR_HRS COST;                                                                            &lt;BR /&gt;
cards;                                                                                                                                  &lt;BR /&gt;
CRIS CLAY 1001 949 1709.28 1323.68 4410.66                                                                                              &lt;BR /&gt;
CRIS CLAY 1002 11 2635.68 4187.84 8154.27                                                                                               &lt;BR /&gt;
CRIS CLAY 1003 37 3979.92 0875.92 8054.62                                                                                               &lt;BR /&gt;
CRIS CLAY 1004 161 3144.24 2236.4 29079.5                                                                                               &lt;BR /&gt;
CRIS CLAY 1005 42 1526.16 726.72 53186.23                                                                                               &lt;BR /&gt;
CRIS CLAY 1006 21 5723.44 134.24 10191.55                                                                                               &lt;BR /&gt;
CRIS CLAY 1007 75 7322.4 494.16 30624.88                                                                                                &lt;BR /&gt;
CRIS CLAY 1009 91 9414.16 627.52 30427.12                                                                                               &lt;BR /&gt;
CRIS CLAY 1013 1 237.12 36 814.5                                                                                                        &lt;BR /&gt;
   ;                                                                                                                                    &lt;BR /&gt;
run;                                                                                                                                    &lt;BR /&gt;
                                                                                                                                        &lt;BR /&gt;
goptions reset=all dev=win;                                                                                                             &lt;BR /&gt;
proc pareto data=Failure;                                                                                                               &lt;BR /&gt;
vbar ID / freq = failures                                                                                                               &lt;BR /&gt;
maxncat=8                                                                                                                               &lt;BR /&gt;
last = 'Miscellaneous'                                                                                                                  &lt;BR /&gt;
other = 'Miscellaneous'                                                                                                                 &lt;BR /&gt;
scale = count                                                                                                                           &lt;BR /&gt;
anchor = bl                                                                                                                             &lt;BR /&gt;
nlegend ;                                                                                                                               &lt;BR /&gt;
run;</description>
    <pubDate>Mon, 25 Apr 2011 13:44:02 GMT</pubDate>
    <dc:creator>Bill</dc:creator>
    <dc:date>2011-04-25T13:44:02Z</dc:date>
    <item>
      <title>Quality Control (PROC PARETO)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55356#M15404</link>
      <description>ORGID	SITEID	ID	 FAILURES	MTBF_HRS	MTTR_HRS	COST&lt;BR /&gt;
CRIS	CLAY	1001	 949	1709.28	    1323.68	4410.66&lt;BR /&gt;
CRIS	CLAY	1002	11	        2635.68	    4187.84	8154.27&lt;BR /&gt;
CRIS	CLAY	1003	37	        3979.92	    0875.92	8054.62&lt;BR /&gt;
CRIS	CLAY	1004	 161	3144.24	    2236.4	29079.5&lt;BR /&gt;
CRIS	CLAY	1005	42	        1526.16	    726.72	53186.23&lt;BR /&gt;
CRIS	CLAY	1006	21	        5723.44	    134.24	10191.55&lt;BR /&gt;
CRIS	CLAY	1007	75	        7322.4	    494.16	30624.88&lt;BR /&gt;
CRIS	CLAY	1009	91	        9414.16	    627.52	30427.12&lt;BR /&gt;
CRIS	CLAY	1013	1	        237.12	   36	               814.5&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc pareto data=Failure;&lt;BR /&gt;
   vbar ID / freq        = _failures&lt;BR /&gt;
                last        = 'Miscellaneous'&lt;BR /&gt;
                scale       = count&lt;BR /&gt;
                anchor      = bl&lt;BR /&gt;
                nlegend ;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
I tried with porc pareto to get such kind of output but wasnt possible for me&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
@@@  |&lt;BR /&gt;
@@@  |&lt;BR /&gt;
failures |______________________________________&lt;BR /&gt;
@@@  |&lt;BR /&gt;
@@@  |&lt;BR /&gt;
@@@  |&lt;BR /&gt;
cost @ |______________________________________&lt;BR /&gt;
@@@ |&lt;BR /&gt;
@@@ |               &lt;BR /&gt;
@@@ |               &lt;BR /&gt;
MTTR  |_________________________________________&lt;BR /&gt;
@@@ |&lt;BR /&gt;
@@@ |      &lt;BR /&gt;
@@@ |      &lt;BR /&gt;
MTBF@|________________________________________&lt;BR /&gt;
              1001 1002 1003 1004 1005 1006 ---- - - -  - - - - &lt;BR /&gt;
&lt;BR /&gt;
Hope u understood what i am looking for i want to print such kind of output in sas or eg etc by showing the values in vertical bars for id by varialbes .&lt;BR /&gt;
&lt;BR /&gt;
Thr is no use of @ symbol to plot graph systematical i used @ symbol &lt;BR /&gt;
&lt;BR /&gt;
please please help me out ....&lt;BR /&gt;
&lt;BR /&gt;
thnk a lot</description>
      <pubDate>Fri, 22 Apr 2011 17:50:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55356#M15404</guid>
      <dc:creator>sss</dc:creator>
      <dc:date>2011-04-22T17:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Quality Control (PROC PARETO)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55357#M15405</link>
      <description>The code below works for me;  You had freq=_failures instead of failures.&lt;BR /&gt;
&lt;BR /&gt;
data failure;                                                                                                                           &lt;BR /&gt;
input ORGID $ SITEID $ ID $ FAILURES MTBF_HRS MTTR_HRS COST;                                                                            &lt;BR /&gt;
cards;                                                                                                                                  &lt;BR /&gt;
CRIS CLAY 1001 949 1709.28 1323.68 4410.66                                                                                              &lt;BR /&gt;
CRIS CLAY 1002 11 2635.68 4187.84 8154.27                                                                                               &lt;BR /&gt;
CRIS CLAY 1003 37 3979.92 0875.92 8054.62                                                                                               &lt;BR /&gt;
CRIS CLAY 1004 161 3144.24 2236.4 29079.5                                                                                               &lt;BR /&gt;
CRIS CLAY 1005 42 1526.16 726.72 53186.23                                                                                               &lt;BR /&gt;
CRIS CLAY 1006 21 5723.44 134.24 10191.55                                                                                               &lt;BR /&gt;
CRIS CLAY 1007 75 7322.4 494.16 30624.88                                                                                                &lt;BR /&gt;
CRIS CLAY 1009 91 9414.16 627.52 30427.12                                                                                               &lt;BR /&gt;
CRIS CLAY 1013 1 237.12 36 814.5                                                                                                        &lt;BR /&gt;
   ;                                                                                                                                    &lt;BR /&gt;
run;                                                                                                                                    &lt;BR /&gt;
                                                                                                                                        &lt;BR /&gt;
goptions reset=all dev=win;                                                                                                             &lt;BR /&gt;
proc pareto data=Failure;                                                                                                               &lt;BR /&gt;
vbar ID / freq = failures                                                                                                               &lt;BR /&gt;
maxncat=8                                                                                                                               &lt;BR /&gt;
last = 'Miscellaneous'                                                                                                                  &lt;BR /&gt;
other = 'Miscellaneous'                                                                                                                 &lt;BR /&gt;
scale = count                                                                                                                           &lt;BR /&gt;
anchor = bl                                                                                                                             &lt;BR /&gt;
nlegend ;                                                                                                                               &lt;BR /&gt;
run;</description>
      <pubDate>Mon, 25 Apr 2011 13:44:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55357#M15405</guid>
      <dc:creator>Bill</dc:creator>
      <dc:date>2011-04-25T13:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Quality Control (PROC PARETO)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55358#M15406</link>
      <description>hey BILL&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks for your reply.I really dont know how to express my problem, But i tried my best to explain it.&lt;BR /&gt;
&lt;BR /&gt;
U have plotted the graph wrt to ID and Failures, what i am looking for is i want to plot the graph WRT ID, failures, MTBF_HRS MTTR_HRS COST.&lt;BR /&gt;
&lt;BR /&gt;
In i single graph.. sample output has been posted in previous post</description>
      <pubDate>Mon, 25 Apr 2011 16:45:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Quality-Control-PROC-PARETO/m-p/55358#M15406</guid>
      <dc:creator>sss</dc:creator>
      <dc:date>2011-04-25T16:45:15Z</dc:date>
    </item>
  </channel>
</rss>

