<?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 Pseudo Failure Table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405800#M65593</link>
    <description>&lt;P&gt;I have created a degradation graph and now I want to add some script that will create pseudo failure data and output a table for time to failure for each unit ID. The script gained from creating the table manually does not create a data table but a Life Distribution. Is there any script to allow me to create a Pseudo Failure Data Table.&lt;/P&gt;&lt;P&gt;The reason I want the data in a table is because I then want to plot a Survival Plot.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:34:28 GMT</pubDate>
    <dc:creator>Jemster</dc:creator>
    <dc:date>2023-06-10T23:34:28Z</dc:date>
    <item>
      <title>Pseudo Failure Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405800#M65593</link>
      <description>&lt;P&gt;I have created a degradation graph and now I want to add some script that will create pseudo failure data and output a table for time to failure for each unit ID. The script gained from creating the table manually does not create a data table but a Life Distribution. Is there any script to allow me to create a Pseudo Failure Data Table.&lt;/P&gt;&lt;P&gt;The reason I want the data in a table is because I then want to plot a Survival Plot.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:34:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405800#M65593</guid>
      <dc:creator>Jemster</dc:creator>
      <dc:date>2023-06-10T23:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Pseudo Failure Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405841#M65596</link>
      <description>&lt;P&gt;I don't understand what is this step: "The script gained from creating the table manually does not create a data table but a Life Distribution."&lt;/P&gt;
&lt;P&gt;Here is an example of steps to get Pseudo Failure using scripting and get Survival Plot.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Reliability/GaAs Laser.jmp" );
obj = dt &amp;lt;&amp;lt; Degradation(
	Y( :Current ),
	Time( :Hours ),
	Label( :Unit ),
	Model Report(
		Simple Linear Path( X Scale( Linear ), Y Scale( Linear ), Intercept( Common ), Slope( Different ) )
	)
);
obj &amp;lt;&amp;lt; Show Fitted Lines( 1 );
obj &amp;lt;&amp;lt; Set Upper Spec Limit( 10 );//set pseudo failure threshold
pfailures = obj &amp;lt;&amp;lt; Save Crossing Time;//get pseudo failure data in table
pobj = pfailures &amp;lt;&amp;lt; run script("Life Distribution");//run the embedded script to analyze pseudo failure data
pobj &amp;lt;&amp;lt; Show Survival Curve;//turn failure distribution curve to survival curve
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Jul 2021 13:17:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405841#M65596</guid>
      <dc:creator>peng_liu</dc:creator>
      <dc:date>2021-07-30T13:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Pseudo Failure Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405848#M65597</link>
      <description>&lt;P&gt;This works well but I'd like to then plot a Survival curve instead/as well as a Life Distribution curve. By a survival curve I mean&amp;nbsp;&lt;/P&gt;&lt;P&gt;analyse&amp;gt;reliability and survival&amp;gt;survival not analyse&amp;gt;reliability and survival&amp;gt;life distribution&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 13:43:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405848#M65597</guid>
      <dc:creator>Jemster</dc:creator>
      <dc:date>2021-07-30T13:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Pseudo Failure Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405856#M65598</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//Generate Failure Time Prediction Data
obj &amp;lt;&amp;lt; Set Lower Spec Limit(100);
pfailures = obj &amp;lt;&amp;lt; Save Crossing Time;
A_failures = pfailures &amp;lt;&amp;lt; Get As Matrix;

//Put the data into a column
dt_3 = Data Table( "Stacked and Transposed New Dates Raw Data" );
col_pred = dt_3 &amp;lt;&amp;lt; New Column( "Predictions" );
col_pred &amp;lt;&amp;lt; Set Values(A_failures);
Survival( Y( :Predictions ), Failure Plot( 1 ) );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I used this code to get the graph I wanted&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 13:58:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pseudo-Failure-Table/m-p/405856#M65598</guid>
      <dc:creator>Jemster</dc:creator>
      <dc:date>2021-07-30T13:58:59Z</dc:date>
    </item>
  </channel>
</rss>

