<?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 Extracting fit values from bivariate report in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Extracting-fit-values-from-bivariate-report/m-p/346320#M59699</link>
    <description>&lt;P&gt;I have a data table from which I perform a Bivariate analysis with a linear fit.&amp;nbsp; There are many different linear plots divided into groups of Wafer, BitSize, and DieSite according to the use of By as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;WbPlots = dt &amp;lt;&amp;lt; Bivariate(
Y(Column(Weibull_y_name)),
X(Column(Weibull_x_name)),
Fit Line( {Line Color( {213, 72, 87} )} ),
By(:Wafer,:BitSize,:DieSite) 
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next, I want to make combined data tables of all the Summary of Fit and Parameter Estimates that are produced, so I do this with:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;WbPlotsReport = WbPlots &amp;lt;&amp;lt; report;
dt_values = WbPlotsReport[1][tablebox(3)] &amp;lt;&amp;lt; make combined data table;
dt_fitqual = WbPlotsReport[1][tablebox(1)] &amp;lt;&amp;lt; make combined data table;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that for some groupings of Wafer, BitSize, and DieSite the Lack of Fit report is produced while for other groupings of Wafer, BitSize, and DieSite the Lack of Fit report is not produced.&amp;nbsp; Whenever Lack of Fit is produced then my use of tablebox(3) fails to give the desired Parameter Estimates for any groupings in which Lack of Fit appears because in that case Parameter Estimates becomes tablebox(4) rather than tablebox(3).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To solve this problem, can I somehow refer to the Parameter Estimates report by name rather than by its position as in tablebox(3)?&amp;nbsp; Alternatively, can I somehow instruct JMP not to include the Lack of Fit report for any of the groupings so that then tablebox(3) would properly select the Parameter Estimates report?&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 22:02:33 GMT</pubDate>
    <dc:creator>fbm73</dc:creator>
    <dc:date>2023-06-09T22:02:33Z</dc:date>
    <item>
      <title>Extracting fit values from bivariate report</title>
      <link>https://community.jmp.com/t5/Discussions/Extracting-fit-values-from-bivariate-report/m-p/346320#M59699</link>
      <description>&lt;P&gt;I have a data table from which I perform a Bivariate analysis with a linear fit.&amp;nbsp; There are many different linear plots divided into groups of Wafer, BitSize, and DieSite according to the use of By as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;WbPlots = dt &amp;lt;&amp;lt; Bivariate(
Y(Column(Weibull_y_name)),
X(Column(Weibull_x_name)),
Fit Line( {Line Color( {213, 72, 87} )} ),
By(:Wafer,:BitSize,:DieSite) 
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next, I want to make combined data tables of all the Summary of Fit and Parameter Estimates that are produced, so I do this with:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;WbPlotsReport = WbPlots &amp;lt;&amp;lt; report;
dt_values = WbPlotsReport[1][tablebox(3)] &amp;lt;&amp;lt; make combined data table;
dt_fitqual = WbPlotsReport[1][tablebox(1)] &amp;lt;&amp;lt; make combined data table;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that for some groupings of Wafer, BitSize, and DieSite the Lack of Fit report is produced while for other groupings of Wafer, BitSize, and DieSite the Lack of Fit report is not produced.&amp;nbsp; Whenever Lack of Fit is produced then my use of tablebox(3) fails to give the desired Parameter Estimates for any groupings in which Lack of Fit appears because in that case Parameter Estimates becomes tablebox(4) rather than tablebox(3).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To solve this problem, can I somehow refer to the Parameter Estimates report by name rather than by its position as in tablebox(3)?&amp;nbsp; Alternatively, can I somehow instruct JMP not to include the Lack of Fit report for any of the groupings so that then tablebox(3) would properly select the Parameter Estimates report?&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 22:02:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Extracting-fit-values-from-bivariate-report/m-p/346320#M59699</guid>
      <dc:creator>fbm73</dc:creator>
      <dc:date>2023-06-09T22:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting fit values from bivariate report</title>
      <link>https://community.jmp.com/t5/Discussions/Extracting-fit-values-from-bivariate-report/m-p/346339#M59700</link>
      <description>&lt;P&gt;You can easily point to the Outline Box that the Table Box is nested in, and then reference the Table Box as TableBox(1)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt_values = WbPlotsReport[1][["Parameter Estimates"][tablebox(1)] &amp;lt;&amp;lt; make combined data table;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jan 2021 16:55:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Extracting-fit-values-from-bivariate-report/m-p/346339#M59700</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-07T16:55:31Z</dc:date>
    </item>
  </channel>
</rss>

