<?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 make combined data table from a specific plot? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-make-combined-data-table-from-a-specific-plot/m-p/447226#M69404</link>
    <description>&lt;P&gt;Hi all, I have multiple bivariate plots and I am trying to get the Summary of Fit in one specific bivariate&amp;nbsp; plot (bivplot1). But I kept on getting every data from every bivariate plot.&lt;/P&gt;&lt;P&gt;How can I only get the summary of fit from a specific biv plot?&lt;/P&gt;&lt;P&gt;I am using these lines to get the summary of fit which is in&amp;nbsp;bivplot1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;sumfit = rbiv["Summary of Fit"][1] &amp;lt;&amp;lt; make combined data table;
sumfit2 = sumfit &amp;lt;&amp;lt; Split( Split By( :Column 1 ), Split( :Column 2 ) );
dt_sumfit =&amp;nbsp; Data Table Box( sumfit2 ) ;
dt_sumfit = dt_sumfit &amp;lt;&amp;lt; get picture;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:41:56 GMT</pubDate>
    <dc:creator>UserID16644</dc:creator>
    <dc:date>2023-06-10T23:41:56Z</dc:date>
    <item>
      <title>How to make combined data table from a specific plot?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-combined-data-table-from-a-specific-plot/m-p/447226#M69404</link>
      <description>&lt;P&gt;Hi all, I have multiple bivariate plots and I am trying to get the Summary of Fit in one specific bivariate&amp;nbsp; plot (bivplot1). But I kept on getting every data from every bivariate plot.&lt;/P&gt;&lt;P&gt;How can I only get the summary of fit from a specific biv plot?&lt;/P&gt;&lt;P&gt;I am using these lines to get the summary of fit which is in&amp;nbsp;bivplot1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;sumfit = rbiv["Summary of Fit"][1] &amp;lt;&amp;lt; make combined data table;
sumfit2 = sumfit &amp;lt;&amp;lt; Split( Split By( :Column 1 ), Split( :Column 2 ) );
dt_sumfit =&amp;nbsp; Data Table Box( sumfit2 ) ;
dt_sumfit = dt_sumfit &amp;lt;&amp;lt; get picture;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:41:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-combined-data-table-from-a-specific-plot/m-p/447226#M69404</guid>
      <dc:creator>UserID16644</dc:creator>
      <dc:date>2023-06-10T23:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to make combined data table from a specific plot?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-combined-data-table-from-a-specific-plot/m-p/447248#M69407</link>
      <description>&lt;P&gt;Make combined data table will get you results from each matching table box. Use Make into datatable with correct table box reference to get results from only one.&lt;/P&gt;&lt;P&gt;Here is example when getting the script from Source of datatable (this will create dublicated biv plot thou)&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);
dt = Open("$SAMPLE_DATA/Drug.jmp");

biv = Bivariate(
	SendToByGroup(Bygroup Default),
	Y(:y),
	X(:x),
	Fit Line({Line Color({76, 114, 176})}),
	SendToByGroup({:Drug == "a"}, Fit Line({Line Color({221, 132, 82})})),
	By(:Drug)
);

//Source script, will dublicate biv platform
platform = Data Table("Drug=d") &amp;lt;&amp;lt; Bivariate(
	Y(:y),
	X(:x),
	Fit Line({Line Color({76, 114, 176})})
);
Wait(0);
Report(platform)[Outline Box("Bivariate Fit of y By x Drug=d")][
Outline Box("Linear Fit")][Outline Box("Summary of Fit")][Table Box(1)] &amp;lt;&amp;lt;
Make Into Data Table;
Report(platform) &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Or use Make Combined data table and then delete rows you don't want (this is simpler solution).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 06:59:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-combined-data-table-from-a-specific-plot/m-p/447248#M69407</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-12-21T06:59:45Z</dc:date>
    </item>
  </channel>
</rss>

