<?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: JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485833#M72965</link>
    <description>&lt;P&gt;Save Presentation should give an option to use different insertion methods of new slides &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/display-boxes.shtml?os=win&amp;amp;source=application#ww2164087" target="_blank" rel="noopener"&gt;Save Presentation (jmp.com)&lt;/A&gt; , so you could try using those. Below is example with Append&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;cdf2 &amp;lt;&amp;lt; Save Presentation( "C:/Documents/CDF1.pptx", Append);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 May 2022 17:44:41 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2022-05-10T17:44:41Z</dc:date>
    <item>
      <title>JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485795#M72963</link>
      <description>&lt;P&gt;I have scripted a Data Filter to a Data Table then using the Fit Y By X portal I am generating a cdf plot. Next I save that cdf to a ppt using the following code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Show Properties( cdf1 );&lt;BR /&gt;cdf1 &amp;lt;&amp;lt; Save Presentation( "C:/Documents/CDF1.pptx" );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next I repeat the process and generate cdf2 then save to a ppt, generate cdf3 then save to a ppt, etc..... Winding up with several individual ppts. Is there a way to combine all of the cdfs into one ppt? Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:58:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485795#M72963</guid>
      <dc:creator>WoHNY</dc:creator>
      <dc:date>2023-06-09T16:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485833#M72965</link>
      <description>&lt;P&gt;Save Presentation should give an option to use different insertion methods of new slides &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/display-boxes.shtml?os=win&amp;amp;source=application#ww2164087" target="_blank" rel="noopener"&gt;Save Presentation (jmp.com)&lt;/A&gt; , so you could try using those. Below is example with Append&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;cdf2 &amp;lt;&amp;lt; Save Presentation( "C:/Documents/CDF1.pptx", Append);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 17:44:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485833#M72965</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-05-10T17:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485835#M72967</link>
      <description>&lt;P&gt;Why not let JMP doing the loop for you,&lt;/P&gt;
&lt;P&gt;in the following I slightly tuned an example from scripting index,&lt;/P&gt;
&lt;P&gt;introducing a "by" to the analysis, and then saved the whole window in ppt.&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 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) , by(:age));
rbiv = biv &amp;lt;&amp;lt; report;

(rbiv [1] &amp;lt;&amp;lt; parent)&amp;lt;&amp;lt; Save Presentation( "$TEMP/jmp_example.pptx" );
Open( "$TEMP/jmp_example.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 May 2022 18:00:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485835#M72967</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2022-05-10T18:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485861#M72971</link>
      <description>&lt;P&gt;jthi:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Append works for my situation. Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 21:08:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485861#M72971</guid>
      <dc:creator>WoHNY</dc:creator>
      <dc:date>2022-05-10T21:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485862#M72972</link>
      <description>&lt;P&gt;Georg:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the script. I need to parse through this to understand more.&lt;/P&gt;&lt;P&gt;1. You open a Data Table&lt;/P&gt;&lt;P&gt;2. Name the bivariate chart biv.&lt;/P&gt;&lt;P&gt;3. Send the chart to a report named as rbiv.&lt;/P&gt;&lt;P&gt;4. rbiv [1] is the "parent' pptx?? How are the subsequent charts added to the parent? That part I am not following.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 21:13:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485862#M72972</guid>
      <dc:creator>WoHNY</dc:creator>
      <dc:date>2022-05-10T21:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485863#M72973</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/39782"&gt;@WoHNY&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;1. You open a Data Table&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;2. Name the bivariate chart biv.&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get a reference to the biv platform, but as I use by, this is a list, and not a single instance&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;3. Send the chart to a report named as rbiv.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I get a reference to the report layer, again here the result is a list&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;4. rbiv [1] is the "parent' pptx?? How are the subsequent charts added to the parent? That part I am not following.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I take the first element of the reports by indexing [1] and ask for the reference of the parent window (parenthesis are important). To the result/parent window the message is sent to save it as a ppt. Then JMP does the work, putting each graph into a new slide of one ppt.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 21:25:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-16-2-Multiple-Fit-Y-By-X-CDF-Plots-Saved-Into-ppt/m-p/485863#M72973</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2022-05-10T21:25:20Z</dc:date>
    </item>
  </channel>
</rss>

