<?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: Make combined data table from two fit models in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51484#M29185</link>
    <description>&lt;P&gt;JMP does what I want, but I want to write a script which would do that since I want to only get certain columns as an output and not the entire table that I get after using the make combined data table method in JMP.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Feb 2018 21:09:43 GMT</pubDate>
    <dc:creator>powerpuff</dc:creator>
    <dc:date>2018-02-16T21:09:43Z</dc:date>
    <item>
      <title>Make combined data table from two fit models</title>
      <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51479#M29181</link>
      <description>&lt;P&gt;Is it possible to make combined data table from a fit group having more than 2 fit models in jsl? I have multiple fit models and I want to extract the same data from each of these models, say for example I want to make a combined data table for the 'Analysis of Variance' of each fit model but I want the data from all 3 models in 1 final jmp table. Thank you for any help.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 20:53:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51479#M29181</guid>
      <dc:creator>powerpuff</dc:creator>
      <dc:date>2018-02-16T20:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Make combined data table from two fit models</title>
      <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51482#M29184</link>
      <description>&lt;P&gt;Did you try Right Clicking on the table you want to output, and choosing "Make Combined Data Table", and did it do what you want.........many times JMP will combine such tables, even if coming from different outputs.&amp;nbsp; But from your description, I cannot give you a definative statement&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:01:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51482#M29184</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-02-16T21:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Make combined data table from two fit models</title>
      <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51484#M29185</link>
      <description>&lt;P&gt;JMP does what I want, but I want to write a script which would do that since I want to only get certain columns as an output and not the entire table that I get after using the make combined data table method in JMP.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:09:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51484#M29185</guid>
      <dc:creator>powerpuff</dc:creator>
      <dc:date>2018-02-16T21:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Make combined data table from two fit models</title>
      <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51485#M29186</link>
      <description>&lt;P&gt;For eg:&lt;/P&gt;&lt;P&gt;fmr=fm&amp;lt;&amp;lt;report;&lt;BR /&gt;a=fmr["Scaled Estimates"][TableBox(1)]&amp;lt;&amp;lt;Make combined data table;&lt;BR /&gt;b=fmr["Summary of Fit"][TableBox(1)]&amp;lt;&amp;lt;Make combined data table;&lt;BR /&gt;c=fmr["Analysis of Variance"][TableBox(1)]&amp;lt;&amp;lt;Make combined data table;&lt;BR /&gt;row1=nrows(a);&lt;BR /&gt;row2=nrows(b);&lt;BR /&gt;row3=nrows(c);&lt;BR /&gt;vals=Column(a,"Y")[1::row1];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to be able to be able to do this to an entire Fit Group of multiple fit models.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:12:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51485#M29186</guid>
      <dc:creator>powerpuff</dc:creator>
      <dc:date>2018-02-16T21:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Make combined data table from two fit models</title>
      <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51486#M29187</link>
      <description>&lt;P&gt;Here is a simple script that works across multiple models........am I missing anything?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Semiconductor Capability.jmp" );
ft = Fit Group(
	Oneway( Y( :NPN1 ), X( :wafer ), Means( 1 ), Mean Diamonds( 1 ) ),
	Oneway( Y( :PNP1 ), X( :wafer ), Means( 1 ), Mean Diamonds( 1 ) ),
	&amp;lt;&amp;lt;{Arrange in Rows( 1 )}
);
dta = Report( ft )["Summary of Fit"][Table Box( 1 )] &amp;lt;&amp;lt; make combined data table;
dtb = Report( ft )["Analysis of Variance"][Table Box( 1 )] &amp;lt;&amp;lt; make combined data table;

vals = dta:Y &amp;lt;&amp;lt; get values;

Show( vals );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:32:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51486#M29187</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-02-16T21:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Make combined data table from two fit models</title>
      <link>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51487#M29188</link>
      <description>&lt;P&gt;Yes, that was exactly what I was looking for.. Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:57:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-combined-data-table-from-two-fit-models/m-p/51487#M29188</guid>
      <dc:creator>powerpuff</dc:creator>
      <dc:date>2018-02-16T21:57:43Z</dc:date>
    </item>
  </channel>
</rss>

