<?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: Accessing summary statistics from the output of the Fit Model platform in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7972#M7966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I've found a way, after reading through MS's suggestions under the "Deleting Report Tables" thread - the following works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report(fmo)["Least Squares Means Table"][1] &amp;lt;&amp;lt; make into data table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm assuming the "[1]" picks up the first object (which is a TableBox) within the structure named "Least Squares Means Table" - is that right?&amp;nbsp; And is this the best way to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jan 2014 15:30:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-14T15:30:42Z</dc:date>
    <item>
      <title>Accessing summary statistics from the output of the Fit Model platform</title>
      <link>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7971#M7965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody tell me how to reference the tables of summary statistics that are created by the Fit Model platform, but to do it in such a way that the resulting script is robust against upgrades in JMP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the past I've done this sort of thing: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Open a simple data table; &lt;/P&gt;&lt;P&gt;dt = open("$SAMPLE_DATA/Big Class.jmp");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Fit a model to it; &lt;/P&gt;&lt;P&gt;fmo = Fit Model(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y( :Height ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Effects( :Sex ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Personality( Standard Least Squares ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Emphasis( Minimal Report ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Run(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :Height &amp;lt;&amp;lt; {Lack of Fit( 0 ), Plot Actual by Predicted( 0 ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plot Regression( 0 ), Plot Residual by Predicted( 0 ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plot Effect Leverage( 0 )}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Send the resuting output to a report;&lt;/P&gt;&lt;P&gt;fmor = fmo &amp;lt;&amp;lt; report;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Display the tree structure of the report so I can see where the table box I actually want is; &lt;/P&gt;&lt;P&gt;fmor &amp;lt;&amp;lt; show tree structure;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Finally, transform that table box into a data table; &lt;/P&gt;&lt;P&gt;dtmeans = fmor[TableBox(5)] &amp;lt;&amp;lt; make into data table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this particular instance I get away with the above in both JMP 10 and JMP 11 because the table number happens to be the same in both versions - but I know I can't in general rely on that to be the case, because the platform could have been upgraded in the more recent version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I therefore need to know is: how can I reference what I've above called "fmor[TableBox(5)]" using a name that is invariant to upgrades in JMP?&amp;nbsp; Does this table have a name?&amp;nbsp; If so, what is it?&amp;nbsp; Is it what appears in the tree structure to be called the "HelpKey"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for any help or examples received.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 15:09:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7971#M7965</guid>
      <dc:creator />
      <dc:date>2014-01-14T15:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing summary statistics from the output of the Fit Model platform</title>
      <link>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7972#M7966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I've found a way, after reading through MS's suggestions under the "Deleting Report Tables" thread - the following works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report(fmo)["Least Squares Means Table"][1] &amp;lt;&amp;lt; make into data table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm assuming the "[1]" picks up the first object (which is a TableBox) within the structure named "Least Squares Means Table" - is that right?&amp;nbsp; And is this the best way to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 15:30:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7972#M7966</guid>
      <dc:creator />
      <dc:date>2014-01-14T15:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing summary statistics from the output of the Fit Model platform</title>
      <link>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7973#M7967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The below is independent of the db numbering, and probably more stable. However, there is no guarantee that future JMP versions will not change the name or structure of that outlinebox.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #160091;"&gt;&lt;SPAN style="color: #000000;"&gt;dtmeans &lt;/SPAN&gt;=&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;fmor&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #2800e1;"&gt;Outline Box&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #801392;"&gt;"Least Squares Means Table"&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)]&lt;/STRONG&gt; &lt;/SPAN&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;child&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;())&lt;/STRONG&gt; &lt;/SPAN&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;make into data table&lt;/STRONG&gt;;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #160091;"&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 15:32:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7973#M7967</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2014-01-14T15:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing summary statistics from the output of the Fit Model platform</title>
      <link>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7974#M7968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect!&amp;nbsp; One related question if I may: if I analyze more than a single response variable via that call to Fit Model, there will be as many Outline Boxes called "Least Squares Means Table" as there are variables being analyzed.&amp;nbsp; Is there any way to select the one I want other than doing the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dtmeans = (fmor[Outline Box( "Least Squares Means Table" )] &amp;lt;&amp;lt; child()) &amp;lt;&amp;lt; make combined data table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then extracting the relevant one?&amp;nbsp; I tried indexing the Outline Box, but that doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks - I'm almost there now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 16:04:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7974#M7968</guid>
      <dc:creator />
      <dc:date>2014-01-14T16:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing summary statistics from the output of the Fit Model platform</title>
      <link>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7975#M7969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you know the name of the relevant response variable you can first find the relevant parent display box using the same apporach:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier; color: #008f00;"&gt;// Open a simple data table;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;Ys &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Height&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Weight&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier; color: #008f00;"&gt;// Fit a model to it;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;fmo &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; Fit Model&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; Y&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #032ce4;"&gt;Eval&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; Ys &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; Effects&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Sex &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; Personality&lt;STRONG&gt;(&lt;/STRONG&gt; Standard Least Squares &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; Emphasis&lt;STRONG&gt;(&lt;/STRONG&gt; Minimal Report &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; Run&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; &lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Height &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;Lack of Fit&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Plot Actual by Predicted&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Plot Regression&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; Plot Residual by Predicted&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Plot Effect Leverage&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG&gt;)}&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier; color: #008f00;"&gt;// Find the LSM table of second response (Weight) using wildcard;&lt;/P&gt;&lt;P style="font-size: 14px; font-family: Courier;"&gt;dtmeans &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Report&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; fmo &lt;STRONG&gt;)[&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Outline Box&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #942193;"&gt;"?"&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;||&lt;/SPAN&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;Ys&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;get name&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)][&lt;/STRONG&gt;&lt;SPAN style="color: #032ce4;"&gt;Outline Box&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #942193;"&gt;"Least Squares Means Table"&lt;/SPAN&gt; &lt;STRONG&gt;)]&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;child&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;())&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;make into data table&lt;/STRONG&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 19:51:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Accessing-summary-statistics-from-the-output-of-the-Fit-Model/m-p/7975#M7969</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2014-01-14T19:51:13Z</dc:date>
    </item>
  </channel>
</rss>

