<?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 Proc Shewhart:  Label out of control points with only one control limit in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Shewhart-Label-out-of-control-points-with-only-one-control/m-p/145044#M38541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Version:&amp;nbsp; SAS 9.2 TS2M0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have been working with proc shewhart to create control charts in ODS.&amp;nbsp; What I have done is add a label statement to label points on a shewhart control chart that are out of control by their count number (outlabel= option).&amp;nbsp; This works perfect when I am using both control limits, but when I do this with one control limit, it does not work.&amp;nbsp; I am looking for anyway to fix this, or a different way to do this.&amp;nbsp; I have also tried to just use the testlabel1= option, but that did not work as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code for proc shewhart section:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green;"&gt;/* Individuals Chart */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;proc shewhart history=data2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;irchart &amp;amp;test*lot_count=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'*'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; / outlabel=(lot_count) testlabel1=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; testlabel2=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;&amp;nbsp; nochart2 vref=vref ciindices lsl=&amp;amp;lsl usl=&amp;amp;usl readphases=all phaselegend vreflabpos=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; nolcl zerostd clipfactor=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; tests=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; to &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;4&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; totpanels=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;inset stddev cpklcl=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'Cpk 95% Lower'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; cpk=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'Cpk'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; cpkucl=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'Cpk 95% Upper'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;label &amp;amp;var=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;"&amp;amp;var (&amp;amp;units)"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Sample Data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Count&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="128"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD align="right" height="20" width="64"&gt;15&lt;/TD&gt;&lt;TD align="right" class="xl63" width="64"&gt;2.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;16&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;17&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;18&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;7.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;19&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;21&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;22&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;23&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;24&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;25&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;26&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;27&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;28&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;29&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;31&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;32&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;33&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;34&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;9.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;35&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;36&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;7.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;37&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;6.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;38&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;39&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;40&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;5.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;41&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;42&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;43&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;44&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;45&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;4.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;46&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;6.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;47&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;48&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;49&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;8.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;50&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;12.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;51&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;4.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;52&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;7.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;53&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;0.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;54&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;55&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;56&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;5.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;57&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;4.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;58&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;59&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;60&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;61&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;62&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;63&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;With an upper specification limit of 15.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;As just by looking at the data, they are within specification, but 2 points are outside of the upper control limit.&amp;nbsp; The outlabel= or test1label= option is not labeling them for some reason, I guess because of the "noucl" option in proc shewhart.&amp;nbsp;&amp;nbsp; So I need some other way to label them in the plot by count.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Jeff&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jeff Ollis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2014 18:11:34 GMT</pubDate>
    <dc:creator>Jolly</dc:creator>
    <dc:date>2014-07-31T18:11:34Z</dc:date>
    <item>
      <title>Proc Shewhart:  Label out of control points with only one control limit</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Shewhart-Label-out-of-control-points-with-only-one-control/m-p/145044#M38541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Version:&amp;nbsp; SAS 9.2 TS2M0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have been working with proc shewhart to create control charts in ODS.&amp;nbsp; What I have done is add a label statement to label points on a shewhart control chart that are out of control by their count number (outlabel= option).&amp;nbsp; This works perfect when I am using both control limits, but when I do this with one control limit, it does not work.&amp;nbsp; I am looking for anyway to fix this, or a different way to do this.&amp;nbsp; I have also tried to just use the testlabel1= option, but that did not work as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code for proc shewhart section:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green;"&gt;/* Individuals Chart */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;proc shewhart history=data2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;irchart &amp;amp;test*lot_count=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'*'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; / outlabel=(lot_count) testlabel1=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; testlabel2=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;&amp;nbsp; nochart2 vref=vref ciindices lsl=&amp;amp;lsl usl=&amp;amp;usl readphases=all phaselegend vreflabpos=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; nolcl zerostd clipfactor=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; tests=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; to &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;4&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; totpanels=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;inset stddev cpklcl=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'Cpk 95% Lower'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; cpk=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'Cpk'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; cpkucl=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'Cpk 95% Upper'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;label &amp;amp;var=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;"&amp;amp;var (&amp;amp;units)"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Sample Data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Count&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="128"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD align="right" height="20" width="64"&gt;15&lt;/TD&gt;&lt;TD align="right" class="xl63" width="64"&gt;2.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;16&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;17&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;18&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;7.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;19&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;20&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;21&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;22&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;23&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;24&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;25&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;26&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;27&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;28&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;29&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;30&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;31&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;32&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;33&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;34&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;9.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;35&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;36&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;7.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;37&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;6.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;38&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;39&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;40&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;5.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;41&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;42&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;43&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;44&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;45&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;4.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;46&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;6.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;47&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;48&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;49&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;8.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;50&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;12.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;51&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;4.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;52&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;7.70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;53&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;0.90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;54&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;55&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;1.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;56&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;5.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;57&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;4.40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;58&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;59&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;3.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;60&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;61&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;62&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;63&lt;/TD&gt;&lt;TD align="right" class="xl63"&gt;2.30&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;With an upper specification limit of 15.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;As just by looking at the data, they are within specification, but 2 points are outside of the upper control limit.&amp;nbsp; The outlabel= or test1label= option is not labeling them for some reason, I guess because of the "noucl" option in proc shewhart.&amp;nbsp;&amp;nbsp; So I need some other way to label them in the plot by count.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;Jeff&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jeff Ollis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 18:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Shewhart-Label-out-of-control-points-with-only-one-control/m-p/145044#M38541</guid>
      <dc:creator>Jolly</dc:creator>
      <dc:date>2014-07-31T18:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Shewhart:  Label out of control points with only one control limit</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Shewhart-Label-out-of-control-points-with-only-one-control/m-p/145045#M38542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might want to make some example data available to replicate the issue as well as values of the macro variables referenced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 22:34:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Shewhart-Label-out-of-control-points-with-only-one-control/m-p/145045#M38542</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-07-31T22:34:57Z</dc:date>
    </item>
  </channel>
</rss>

