<?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: How to show failure rate  in summary statistics (e.g. percentage of cells in a column with value larger than a given number)? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366055#M61568</link>
    <description>&lt;P&gt;In addition to both other replies, I think this is best covered by the process capability platform already. So if you add a spec-limit to that column (i.e. USL=100 for the column weight in Big Class.jmp like&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;did in his script), you will get in the distribution platform also a process capability, which shows you the Nonconformance shares (55% = 22 members of Big Class.jmp).&lt;/P&gt;&lt;P&gt;There you can also see the difference of real nonconformance to the modeled nonconformance share. The modeled one is only ok, when the model fits the distribution well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Georg_0-1615211314886.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/31098iFF0A8F681E007F8B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Georg_0-1615211314886.png" alt="Georg_0-1615211314886.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Mar 2021 13:52:40 GMT</pubDate>
    <dc:creator>Georg</dc:creator>
    <dc:date>2021-03-08T13:52:40Z</dc:date>
    <item>
      <title>How to show failure rate  in summary statistics (e.g. percentage of cells in a column with value larger than a given number)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/365995#M61556</link>
      <description>&lt;P&gt;For example, snapshot below is the statistics of a column of values. There are mean/Std Dev etc in the Summery Statistics. I want to add another variable called failure rate, which is defined as the number of cells out of the total N (=1079) which has value larger than a give number, e.g. 99.5. How can I do that? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fireonthesea_0-1615192269536.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/31090i1F8B93EBE9044CDF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fireonthesea_0-1615192269536.png" alt="fireonthesea_0-1615192269536.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:26:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/365995#M61556</guid>
      <dc:creator>fireonthesea</dc:creator>
      <dc:date>2023-06-10T23:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to show failure rate  in summary statistics (e.g. percentage of cells in a column with value larger than a given number)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366015#M61557</link>
      <description>&lt;P&gt;I'm not sure if you can directly modify Summary Statistics with custom data, but you could create your own Summary Statistics with something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
obj = dt &amp;lt;&amp;lt; Distribution(Column(:Height));
obj &amp;lt;&amp;lt; Summary Statistics(1);
a = report(obj);
b = a["Summary Statistics"][TableBox(1)];

//values from current summary statistics
vals = b &amp;lt;&amp;lt; get; 
//add new text value
Insert Into(vals[1], "Failure Rate");
//get new num value
valueOver = N Items(dt &amp;lt;&amp;lt; Get Rows Where(:weight &amp;gt;= 100));
//add new number value based on N index
Insert Into(vals[2], valueOver);
//create custom summary statistics
a &amp;lt;&amp;lt; Append(
	Outlinebox("Summary Statistics Custom",
		Table Box(
			String Col Box("",vals[1], &amp;lt;&amp;lt; Background color(80)),
			Number Col Box("",vals[2])
		)
	)
);
//hide original summary statistics
//obj &amp;lt;&amp;lt; Summary Statistics(0);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Mar 2021 09:29:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366015#M61557</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-03-08T09:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to show failure rate  in summary statistics (e.g. percentage of cells in a column with value larger than a given number)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366023#M61558</link>
      <description>&lt;P&gt;Use the distribution platform and turn on the summary statistics, fit a model to your data (normal for example) and then in the normal hotspot turn on capability, fill int he spec limits and you will get failure rate&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 09:40:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366023#M61558</guid>
      <dc:creator>pauldeen</dc:creator>
      <dc:date>2021-03-08T09:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to show failure rate  in summary statistics (e.g. percentage of cells in a column with value larger than a given number)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366055#M61568</link>
      <description>&lt;P&gt;In addition to both other replies, I think this is best covered by the process capability platform already. So if you add a spec-limit to that column (i.e. USL=100 for the column weight in Big Class.jmp like&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;did in his script), you will get in the distribution platform also a process capability, which shows you the Nonconformance shares (55% = 22 members of Big Class.jmp).&lt;/P&gt;&lt;P&gt;There you can also see the difference of real nonconformance to the modeled nonconformance share. The modeled one is only ok, when the model fits the distribution well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Georg_0-1615211314886.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/31098iFF0A8F681E007F8B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Georg_0-1615211314886.png" alt="Georg_0-1615211314886.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 13:52:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-failure-rate-in-summary-statistics-e-g-percentage-of/m-p/366055#M61568</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2021-03-08T13:52:40Z</dc:date>
    </item>
  </channel>
</rss>

