<?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: Saving the analysis script in the data table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778474#M96008</link>
    <description>&lt;P&gt;It will get saved to Enhanced Log (or workflow builder most likely). I think you have to capture it from there and then make slight modifications to add it to your table script&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1722624301971.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66775iB964EB5C0D83BE52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1722624301971.png" alt="jthi_0-1722624301971.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I this case it could be enough if you take this script&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1722624335016.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66776i970D42665008FE47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1722624335016.png" alt="jthi_1-1722624335016.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and remove unnecessary parts. From&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Save Columns: Prob Scores
Local({obj},
	obj = Data Table("Big Class") &amp;lt;&amp;lt; Distribution(
		Continuous Distribution(Column(:height), Process Capability(0))
	);
	obj &amp;lt;&amp;lt; Save("Prob Scores");
	obj &amp;lt;&amp;lt; Close Window;
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	obj = Distribution(
		Continuous Distribution(Column(:height), Process Capability(0))
	);
	obj &amp;lt;&amp;lt; Save("Prob Scores");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You might also want to drop the table name. You can save this as table script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;obj = Distribution(
		Continuous Distribution(Column(:height), Process Capability(0))
	);
	obj &amp;lt;&amp;lt; Save("Prob Scores");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1722624404362.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66777i22544015B9E97F1B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1722624404362.png" alt="jthi_2-1722624404362.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But depending on what you are doing I would suggest you also check out workflow builder&lt;/P&gt;</description>
    <pubDate>Fri, 02 Aug 2024 18:47:12 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-08-02T18:47:12Z</dc:date>
    <item>
      <title>Saving the analysis script in the data table</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778460#M96006</link>
      <description>&lt;P&gt;JMP 18.01, Mac OS 14.5.&lt;/P&gt;&lt;P&gt;I noticed that saving a script to the data table may not capture the last bit(s) of analysis. &amp;nbsp;For example, when I execute &amp;gt;Distribution (empirical) on a subset of data I have the option to save Probability Scores, like in the included screenshot. &amp;nbsp;That last bit is not captured by the saved script. &amp;nbsp;Is there a way to include it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 18:35:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778460#M96006</guid>
      <dc:creator>Sextus</dc:creator>
      <dc:date>2024-08-02T18:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Saving the analysis script in the data table</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778474#M96008</link>
      <description>&lt;P&gt;It will get saved to Enhanced Log (or workflow builder most likely). I think you have to capture it from there and then make slight modifications to add it to your table script&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1722624301971.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66775iB964EB5C0D83BE52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1722624301971.png" alt="jthi_0-1722624301971.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I this case it could be enough if you take this script&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1722624335016.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66776i970D42665008FE47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1722624335016.png" alt="jthi_1-1722624335016.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and remove unnecessary parts. From&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Save Columns: Prob Scores
Local({obj},
	obj = Data Table("Big Class") &amp;lt;&amp;lt; Distribution(
		Continuous Distribution(Column(:height), Process Capability(0))
	);
	obj &amp;lt;&amp;lt; Save("Prob Scores");
	obj &amp;lt;&amp;lt; Close Window;
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	obj = Distribution(
		Continuous Distribution(Column(:height), Process Capability(0))
	);
	obj &amp;lt;&amp;lt; Save("Prob Scores");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You might also want to drop the table name. You can save this as table script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;obj = Distribution(
		Continuous Distribution(Column(:height), Process Capability(0))
	);
	obj &amp;lt;&amp;lt; Save("Prob Scores");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1722624404362.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66777i22544015B9E97F1B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1722624404362.png" alt="jthi_2-1722624404362.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But depending on what you are doing I would suggest you also check out workflow builder&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 18:47:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778474#M96008</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-08-02T18:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Saving the analysis script in the data table</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778652#M96016</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 23:05:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-the-analysis-script-in-the-data-table/m-p/778652#M96016</guid>
      <dc:creator>Sextus</dc:creator>
      <dc:date>2024-08-02T23:05:16Z</dc:date>
    </item>
  </channel>
</rss>

