<?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 Capturing degradation fit parameters to table? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48627#M27657</link>
    <description>&lt;P&gt;How do I capture reliability degradation fit parameters to table?&lt;/P&gt;
&lt;P&gt;The four bolded lines are the crux of what I am trying to do.&lt;/P&gt;
&lt;P&gt;Fitting the degradation and then simply capturing the fit parameters in a column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Script below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Degradation(
    Y( :current ),
    Time( :time ),
    Label( :DUT ),
    Application( Repeated Measures Degradation ),
    Connect Data Markers( 1 ),
    Show Fitted Lines( 0 ),
    Show Spec Limits( 1 ),
    Show Median Curves( 0 ),
    Show Legend( 0 ),
    No Tab List( 0 ),
    Set Upper Spec Limit( . ),
    Set Lower Spec Limit( . ),
    Set Censoring Time( . ),
    Show Residual Plot( 1 ),
    Show Inverse Prediction Plot( 1 ),
    Inverse Prediction Interval( No Interval ),
    Inverse Prediction Alpha( 0.05 ),
    Path Specifications(
        Simple Linear(
            Add Custom X Scale( {{"Linear", Function( {x}, x ), Function( {x}, x )}} ),
            Add Custom Y Scale( {{"Linear", Function( {x}, x ), Function( {x}, x )}} ),
            Slope( Different ),
            Intercept( Different ),
            Select X Scale( "Linear" ),
            Select Y Scale( "Linear" )
        ),
        Nonlinear Path(
            Add Formula(
                Formula Name( "modeledcurrent" ),
                Formula(
                    Parameter(
                        {b0 = 100, b1 = 40, b2 = 1},
                        b0[DUT] / (1 + Exp( (time - b1[DUT]) / b2[DUT] ))
                    )
                ),
                Fitting Method( QuasiNewton BFGS ),
                Fixed(
                    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
                    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
                    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                )
            ),
            Select Formula( "modeledcurrent" )
        )
    ),
    Nonlinear Path( 1 ),
    Mean Path( 1 ),
    SendToReport(
        Dispatch(
            {"Overlay", "current Residuals by time"},
            "7",
            ScaleBox,
            {Min( -350 ), Max( 325 ), Inc( 50 ), Minor Ticks( 1 )}
        ),
        Dispatch(
            {"Overlay", "current Residuals by time"},
            "13",
            ScaleBox,
            {Min( -350 ), Max( 325 ), Inc( 50 ), Minor Ticks( 1 )}
        ),
        Dispatch(
            {"Overlay", "Model Specification"},
            "Empty",
            TextEditBox,
            {Fixed Size( 1, 100, 14 ), Set Text( "modeledcurrent" )}
        )
    )
);

Caption( "Picking off parameters from MPD curves" );
Wait( 0 );
prgStatus = New Window( "Progress",
    Show Menu( 0 ),
    Show Toolbars( 0 ),
    V List Box(
        align( center ),
        dlg_gb = Graph Box(
            Title( "200hr ttfs from MPD curves" ),
            FrameSize( 200, 30 ),
            X Scale( 0, 100 ),
            Y Scale( 0, 1 ),
            xaxis( Inside Ticks( 1 ) ),
            yaxis( Show Major Ticks( 0 ), Show Minor Ticks( 0 ), Show Labels( 0 ) ),
            xname( "% Complete" ),
            yname( "" )
        ),
        Button Box( "Cancel", prgStatus &amp;lt;&amp;lt; Close Window )
    )
);

dt = Current Data Table();
p# = N Row( dt );
dt &amp;lt;&amp;lt; New Column( "bee0", Numeric, Continuous, Format( "Fixed Dec", 8, 1 ) );
dt &amp;lt;&amp;lt; New Column( "bee1", Numeric, Continuous, Format( "Fixed Dec", 8, 1 ) );
dt &amp;lt;&amp;lt; New Column( "bee2", Numeric, Continuous, Format( "Fixed Dec", 8, 1 ) );

For( i = 1, i &amp;lt;= p#, i++,
    prgrs = (i / p#) * 100;
    Try(
        prgStatus[FrameBox( 1 )] &amp;lt;&amp;lt; Add Graphics Script(
            {Fill Color( "green" ), Rect( 0, 1, prgrs, 0, 1 )}
        ),
        i = p# + 1
    );
    Wait( 0 );
    Try( :bee0[i] = b0[:DUT[i]] );
    Try( :bee1[i] = b1[:DUT[i]] );
    Try( :bee2[i] = b2[DUT[i]] )

    ;
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I access the fit parameters?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 23:24:38 GMT</pubDate>
    <dc:creator>galactus3000</dc:creator>
    <dc:date>2023-06-09T23:24:38Z</dc:date>
    <item>
      <title>Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48627#M27657</link>
      <description>&lt;P&gt;How do I capture reliability degradation fit parameters to table?&lt;/P&gt;
&lt;P&gt;The four bolded lines are the crux of what I am trying to do.&lt;/P&gt;
&lt;P&gt;Fitting the degradation and then simply capturing the fit parameters in a column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Script below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Degradation(
    Y( :current ),
    Time( :time ),
    Label( :DUT ),
    Application( Repeated Measures Degradation ),
    Connect Data Markers( 1 ),
    Show Fitted Lines( 0 ),
    Show Spec Limits( 1 ),
    Show Median Curves( 0 ),
    Show Legend( 0 ),
    No Tab List( 0 ),
    Set Upper Spec Limit( . ),
    Set Lower Spec Limit( . ),
    Set Censoring Time( . ),
    Show Residual Plot( 1 ),
    Show Inverse Prediction Plot( 1 ),
    Inverse Prediction Interval( No Interval ),
    Inverse Prediction Alpha( 0.05 ),
    Path Specifications(
        Simple Linear(
            Add Custom X Scale( {{"Linear", Function( {x}, x ), Function( {x}, x )}} ),
            Add Custom Y Scale( {{"Linear", Function( {x}, x ), Function( {x}, x )}} ),
            Slope( Different ),
            Intercept( Different ),
            Select X Scale( "Linear" ),
            Select Y Scale( "Linear" )
        ),
        Nonlinear Path(
            Add Formula(
                Formula Name( "modeledcurrent" ),
                Formula(
                    Parameter(
                        {b0 = 100, b1 = 40, b2 = 1},
                        b0[DUT] / (1 + Exp( (time - b1[DUT]) / b2[DUT] ))
                    )
                ),
                Fitting Method( QuasiNewton BFGS ),
                Fixed(
                    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
                    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
                    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                )
            ),
            Select Formula( "modeledcurrent" )
        )
    ),
    Nonlinear Path( 1 ),
    Mean Path( 1 ),
    SendToReport(
        Dispatch(
            {"Overlay", "current Residuals by time"},
            "7",
            ScaleBox,
            {Min( -350 ), Max( 325 ), Inc( 50 ), Minor Ticks( 1 )}
        ),
        Dispatch(
            {"Overlay", "current Residuals by time"},
            "13",
            ScaleBox,
            {Min( -350 ), Max( 325 ), Inc( 50 ), Minor Ticks( 1 )}
        ),
        Dispatch(
            {"Overlay", "Model Specification"},
            "Empty",
            TextEditBox,
            {Fixed Size( 1, 100, 14 ), Set Text( "modeledcurrent" )}
        )
    )
);

Caption( "Picking off parameters from MPD curves" );
Wait( 0 );
prgStatus = New Window( "Progress",
    Show Menu( 0 ),
    Show Toolbars( 0 ),
    V List Box(
        align( center ),
        dlg_gb = Graph Box(
            Title( "200hr ttfs from MPD curves" ),
            FrameSize( 200, 30 ),
            X Scale( 0, 100 ),
            Y Scale( 0, 1 ),
            xaxis( Inside Ticks( 1 ) ),
            yaxis( Show Major Ticks( 0 ), Show Minor Ticks( 0 ), Show Labels( 0 ) ),
            xname( "% Complete" ),
            yname( "" )
        ),
        Button Box( "Cancel", prgStatus &amp;lt;&amp;lt; Close Window )
    )
);

dt = Current Data Table();
p# = N Row( dt );
dt &amp;lt;&amp;lt; New Column( "bee0", Numeric, Continuous, Format( "Fixed Dec", 8, 1 ) );
dt &amp;lt;&amp;lt; New Column( "bee1", Numeric, Continuous, Format( "Fixed Dec", 8, 1 ) );
dt &amp;lt;&amp;lt; New Column( "bee2", Numeric, Continuous, Format( "Fixed Dec", 8, 1 ) );

For( i = 1, i &amp;lt;= p#, i++,
    prgrs = (i / p#) * 100;
    Try(
        prgStatus[FrameBox( 1 )] &amp;lt;&amp;lt; Add Graphics Script(
            {Fill Color( "green" ), Rect( 0, 1, prgrs, 0, 1 )}
        ),
        i = p# + 1
    );
    Wait( 0 );
    Try( :bee0[i] = b0[:DUT[i]] );
    Try( :bee1[i] = b1[:DUT[i]] );
    Try( :bee2[i] = b2[DUT[i]] )

    ;
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I access the fit parameters?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:24:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48627#M27657</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2023-06-09T23:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48629#M27658</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7154"&gt;@galactus3000&lt;/a&gt;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;While this doesn't directly answer your question, I think this is helpful for you .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JSL-Cookbook/Extract-Statistics-from-an-Analysis-into-a-Report/ta-p/41547" target="_blank"&gt;https://community.jmp.com/t5/JSL-Cookbook/Extract-Statistics-from-an-Analysis-into-a-Report/ta-p/41547&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 15:21:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48629#M27658</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2017-12-14T15:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48636#M27661</link>
      <description>&lt;P&gt;thanks ... closer but not there yet .... how do I now extract the values I want?&lt;/P&gt;&lt;P&gt;script below ... I've created analysis and report level variables &lt;FONT face="courier new,courier"&gt;dgr&lt;/FONT&gt; and&lt;FONT face="courier new,courier"&gt; reportdgr&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;but now how do I get the parameters from this variable &lt;FONT face="courier new,courier"&gt;reportdgr&lt;/FONT&gt;? (see pic below script)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=currentdatatable();


dgr=dt&amp;lt;&amp;lt;Degradation(
	Y( :current ),
	Time( :time ),
	Label( :DUT ),
	Application( Repeated Measures Degradation ),
	Connect Data Markers( 1 ),
	Show Fitted Lines( 0 ),
	Show Spec Limits( 1 ),
	Show Median Curves( 0 ),
	Show Legend( 0 ),
	No Tab List( 0 ),
	Set Upper Spec Limit( . ),
	Set Lower Spec Limit( . ),
	Set Censoring Time( . ),
	Show Residual Plot( 1 ),
	Show Inverse Prediction Plot( 1 ),
	Inverse Prediction Interval( No Interval ),
	Inverse Prediction Alpha( 0.05 ),
	Path Specifications(
		Simple Linear(
			Add Custom X Scale(
				{{"Linear", Function( {x}, x ), Function( {x}, x )}}
			),
			Add Custom Y Scale(
				{{"Linear", Function( {x}, x ), Function( {x}, x )}}
			),
			Slope( Different ),
			Intercept( Different ),
			Select X Scale( "Linear" ),
			Select Y Scale( "Linear" )
		),
		Nonlinear Path(
			Add Formula(
				Formula Name( "modeledcurrent" ),
				Formula(
					Parameter(
						{b0 = 100, b1 = 40, b2 = 1},
						b0[DUT] / (1 + Exp( (time - b1[DUT]) / b2[DUT] ))
					)
				),
				Fitting Method( QuasiNewton BFGS ),
				Fixed(
					[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
					0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
					0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
					0]
				)
			),
			Select Formula( "modeledcurrent" )
		)
	),
	Nonlinear Path( 1 ),
	Mean Path( 1 )
//	,SendToReport(
//		Dispatch(
//			{"Overlay", "current Residuals by time"},
//			"7",
//			ScaleBox,
//			{Min( -350 ), Max( 325 ), Inc( 50 ), Minor Ticks( 1 )}
//		),
//		Dispatch(
//			{"Overlay", "current Residuals by time"},
//			"13",
//			ScaleBox,
//			{Min( -350 ), Max( 325 ), Inc( 50 ), Minor Ticks( 1 )}
//		),
//		Dispatch(
//			{"Overlay", "Model Specification"},
//			"Empty",
//			TextEditBox,
//			{Fixed Size( 1, 100, 14 ), Set Text( "modeledcurrent" )}
//		)
//	)
);
reportdgr=dgr&amp;lt;&amp;lt;Report;
reportdgr[Outline Box("Overlay")][Outline Box("Model Specification")]&amp;lt;&amp;lt;close(0);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CaptureDegradationWindow.JPG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8681i30188C5A1D694B9E/image-size/large?v=v2&amp;amp;px=999" role="button" title="CaptureDegradationWindow.JPG" alt="CaptureDegradationWindow.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 16:42:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48636#M27661</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2017-12-14T16:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48637#M27662</link>
      <description>&lt;P&gt;Use Show Tree Structure() . This should give you the reference name of the Parameter block in your window.&lt;BR /&gt;&lt;BR /&gt;You can then extract values by referring to that box&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-extract-Parameter-Estimates-of-Reciprocals-i-e-make-into/td-p/11298" target="_blank"&gt;https://community.jmp.com/t5/Discussions/How-to-extract-Parameter-Estimates-of-Reciprocals-i-e-make-into/td-p/11298&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 16:54:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48637#M27662</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2017-12-14T16:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48640#M27664</link>
      <description>&lt;P&gt;ah ... so I am primarily interested in &lt;FONT face="courier new,courier"&gt;NumberColEditBox(1)&lt;/FONT&gt; highlighted below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ModelSpecificationTreeStructure.JPG" style="width: 487px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8683i79BBD38491E1342C/image-size/large?v=v2&amp;amp;px=999" role="button" title="ModelSpecificationTreeStructure.JPG" alt="ModelSpecificationTreeStructure.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 17:01:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48640#M27664</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2017-12-14T17:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48641#M27665</link>
      <description>&lt;P&gt;In order to fit the model, I need to "press" &lt;FONT face="courier new,courier"&gt;ButtonBox(5)&lt;/FONT&gt; which is labeled &lt;STRONG&gt;Fit Model&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;how do I do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;I tried&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dgr&amp;lt;&amp;lt;Fit Model;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but this didn't work?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 17:26:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48641#M27665</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2017-12-14T17:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48790#M27738</link>
      <description>&lt;P&gt;still looking for answers on this&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 14:54:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48790#M27738</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2017-12-18T14:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48791#M27739</link>
      <description>&lt;P&gt;Try 'Help &amp;gt; Scripting Index' then search for "Button Box". You should see that you can send it a 'Click' message which has the same effect as pressing the button manually.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 15:06:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48791#M27739</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-12-18T15:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48808#M27742</link>
      <description>&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;Thanks for the response.&amp;nbsp; Upon refering to scripting index, the &amp;lt;&amp;lt;click command for ButtonBox seems elusive.&amp;nbsp; Not seeing it.&lt;/P&gt;&lt;P&gt;Charlie&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 16:14:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48808#M27742</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2017-12-18T16:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48823#M27749</link>
      <description>&lt;P&gt;Here is a screen capture from the Scripting Index that details the "Click" for the Button Box()&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Click.PNG" style="width: 895px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8743i37A7F2C6408F7C58/image-size/large?v=v2&amp;amp;px=999" role="button" title="Click.PNG" alt="Click.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 19:53:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48823#M27749</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-12-18T19:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48824#M27750</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 19:58:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/48824#M27750</guid>
      <dc:creator>galactus3000</dc:creator>
      <dc:date>2017-12-18T19:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing degradation fit parameters to table?</title>
      <link>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/369980#M61973</link>
      <description>&lt;P&gt;You do not need to press or click any button in this case. There is a message in the Degradation platform protocol for this very purpose.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// example case
dt = Open( "$SAMPLE_DATA/Reliability/GaAs Laser.jmp" );

// launch simple degradation analysis
degr = dt &amp;lt;&amp;lt; Degradation(
	Y( :Current ),
	Time( :Hours ),
	Label( :Unit )
);

// use default model
degr &amp;lt;&amp;lt; Generate Report for Current Model;

// get reference to report layer
degr rep = degr &amp;lt;&amp;lt; Report;

// option 1: get estimates in new table
parameter table = degr rep["Reports"]["Estimate"][TableBox(1)] &amp;lt;&amp;lt; Make Into Data Table;

// option 2: get estimates as matrix
parameter = degr rep["Reports"]["Estimate"][TableBox(1)][StringColBox(1)] &amp;lt;&amp;lt; Get;
estiamte  = degr rep["Reports"]["Estimate"][TableBox(1)][NumberColBox(1)] &amp;lt;&amp;lt; Get As Matrix;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Mar 2021 11:25:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Capturing-degradation-fit-parameters-to-table/m-p/369980#M61973</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-03-20T11:25:10Z</dc:date>
    </item>
  </channel>
</rss>

