<?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 How to export values from &amp;quot;Fit group&amp;quot; regression analysis from many variables Y to one X variable? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13083#M12371</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;I am interested in testing and comparing the correlation of many (hundreds) of Y variables individually to a single X variable. The "fit Y by X" function seems appropriate.&lt;/P&gt;&lt;P&gt;How do I generate the statistics for each Y variable in a batch, and export them to a data table? Can I apply the saved script to the data table and add the values to the table for instance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jul 2015 10:14:51 GMT</pubDate>
    <dc:creator>andreas_scherer</dc:creator>
    <dc:date>2015-07-03T10:14:51Z</dc:date>
    <item>
      <title>How to export values from "Fit group" regression analysis from many variables Y to one X variable?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13083#M12371</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;I am interested in testing and comparing the correlation of many (hundreds) of Y variables individually to a single X variable. The "fit Y by X" function seems appropriate.&lt;/P&gt;&lt;P&gt;How do I generate the statistics for each Y variable in a batch, and export them to a data table? Can I apply the saved script to the data table and add the values to the table for instance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2015 10:14:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13083#M12371</guid>
      <dc:creator>andreas_scherer</dc:creator>
      <dc:date>2015-07-03T10:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to export values from "Fit group" regression analysis from many variables Y to one X variable?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13084#M12372</link>
      <description>&lt;P&gt;Ian's solution &lt;A href="https://community.jmp.com/message/215125#215125" target="_blank"&gt;here &lt;/A&gt;will work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's some sample code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Car Physical Data.jmp");

biv = dt &amp;lt;&amp;lt; Fit Group(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bivariate( Y( :Weight ), X( :Turning Circle ), Fit Line( {Line Color( {213, 72, 87} )} ) ),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bivariate( Y( :Weight ), X( :Displacement ), Fit Line( {Line Color( {213, 72, 87} )} ) ),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bivariate( Y( :Weight ), X( :Horsepower ), Fit Line( {Line Color( {213, 72, 87} )} ) ),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bivariate( Y( :Weight ), X( :Gas Tank Size ), Fit Line( {Line Color( {213, 72, 87} )} ) ),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;{Arrange in Rows( 4 )}
);

// A reference to the report layer: bivRep is also a list
bivRep = biv &amp;lt;&amp;lt; Report;

// 'Make Combined Data Table' avoids having to message to each item in 'bivRep'
dt2 = bivRep[1][TableBox(2)] &amp;lt;&amp;lt; Make Combined Data Table;

dt4 = bivRep[1][TableBox(4)] &amp;lt;&amp;lt; Make Combined Data Table;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 16:17:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13084#M12372</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-10-20T16:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to export values from "Fit group" regression analysis from many variables Y to one X variable?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13085#M12373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, PMroz, for having taken your time . I just wonder why JMP does not have a simpler way of saving results, especially for those who are not as scripting-savvy as you are, obviously.&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 11:40:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13085#M12373</guid>
      <dc:creator>andreas_scherer</dc:creator>
      <dc:date>2015-07-14T11:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to export values from "Fit group" regression analysis from many variables Y to one X variable?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13086#M12374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's actually no scripting required here. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can convert any table in a report into a data table by right clicking on it and choosing &lt;STRONG&gt;Make into Data Table&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="9215_JMPScreenSnapz001.png" style="width: 508px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1813iD121DCA742210FE7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="9215_JMPScreenSnapz001.png" alt="9215_JMPScreenSnapz001.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="9216_JMPScreenSnapz002.png" style="width: 611px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1814i37F58AE6FC947FFA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="9216_JMPScreenSnapz002.png" alt="9216_JMPScreenSnapz002.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If, as in your case, you have lots of analyses in your report window, you can choose &lt;STRONG&gt;Make Combined Data Table&lt;/STRONG&gt; which will make one data table that combines all the tables like the one you click on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="9217_JMPScreenSnapz003.png" style="width: 841px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1815iC08820974FDE5FD9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="9217_JMPScreenSnapz003.png" alt="9217_JMPScreenSnapz003.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in the &lt;A __default_attr="43" __jive_macro_name="community" class="jive_macro jive_macro_community jive-link-community-small" data-id="43" data-objecttype="14" data-orig-content="Discussions" data-type="space" href="https://kvoqx44227.lithium.com/" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;/A&gt; it's sometimes easier to show how to do something by posting a script, but most everything you can do through a script you can do interactively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 23:52:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-export-values-from-quot-Fit-group-quot-regression/m-p/13086#M12374</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2016-10-18T23:52:35Z</dc:date>
    </item>
  </channel>
</rss>

