<?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: Schedule a task in JMP script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13339#M12592</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm new to JMP scripting, could you please show me how to use Finish method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Dec 2015 07:03:00 GMT</pubDate>
    <dc:creator>cjan01</dc:creator>
    <dc:date>2015-12-29T07:03:00Z</dc:date>
    <item>
      <title>Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13332#M12585</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 have a command sequence like this:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;&lt;EM&gt;dt = Data Table("Input Copy");&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;dt1 = Data Table("Matrix Splits Table");&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;dt &amp;lt;&amp;lt; Join(&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; With(dt1),&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; By Matching Columns(lot_id == dt1:Waferlot),&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; By Matching Columns(wafer == dt1:Wafer),&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; Drop Multiples(False,True),&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; Include NonMatches(False,False),&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; Output Table Name("Joined Input Table")&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;);&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 8pt;"&gt;&lt;STRONG&gt;// SBIN summary by SITE and split&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;Data Table("Joined Input Table") &amp;lt;&amp;lt; Summary(Group(:tst_temp, :test_cod, :SBIN_NUM, :SBIN_NAM, :SITE_NUM), N, Subgroup(:Split), output table name("SBIN by Split"));&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now for really large data sets, the Join takes about 1-2 mins. In the meanwhile the following summary command starts to execute and shows no output.&lt;/P&gt;&lt;P&gt;Can I put a sequence that waits for the Join to execute and once it finishes then only start with the Summary command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 17:28:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13332#M12585</guid>
      <dc:creator>b55019</dc:creator>
      <dc:date>2015-07-15T17:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13333#M12586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put wait(0); between the two statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 18:12:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13333#M12586</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2015-07-15T18:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13334#M12587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks . This works &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 18:45:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13334#M12587</guid>
      <dc:creator>b55019</dc:creator>
      <dc:date>2015-07-15T18:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13335#M12588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using Wait(0) in this case is the right answer, but more generally, yes, you can schedule an expression to be evaluated in the future using the Schedule( seconds, expression ) function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 12:47:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13335#M12588</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2015-07-17T12:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13336#M12589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;one more question both regarding wait(0) and schedule(). I didn't start a new thread as this thread seems to be the best place to ask this. As I understand for schedule() you need to know the time in advance. Wait(0) gives the System time to breath but does not work for me in case the computational Task last longer than a breath. To be more concrete:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's say you have a stepwise Regression which may last 1 sec but also may last 10 sec. Now you do not want to wait/schedule the next task for 11 sec after the first to be sure. If the first Task ends earlier you want to start with the next right away, e.g. run the model. if it last longer then you want to wait until it's finished.&lt;/P&gt;&lt;P&gt;Here is some example code, for schedule you would Need to know the Timing in advance. and wait(0) won't work. wait(10) does work but you will have to wait longer than you need. Any guidance would be welcome.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000dd; font-family: Consolas; font-size: 14pt;"&gt;&lt;EM&gt;Names Default to Here&lt;/EM&gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="color: teal; font-family: Consolas; font-size: 14pt;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #0000dd; font-family: Consolas; font-size: 14pt;"&gt;Open&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 14pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: purple; font-family: Consolas; font-size: 14pt;"&gt;"$SAMPLE_DATA/Bands Data.jmp"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 14pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;fm_step &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; dt &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;Fit Model&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;(&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #0000dd; font-family: Consolas; font-size: 14pt;"&gt;Name&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 14pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: purple; font-family: Consolas; font-size: 14pt;"&gt;"Banding?"&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: black; font-size: 14pt; font-family: Consolas;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Effects&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;type on cylinder&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;press type&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;press,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;unit number&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;cylinder size&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;paper mill location&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;plating tank&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;proof cut &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; RS&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;viscosity &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; RS&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;caliper &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; RS&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;ink temperature &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; RS,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;humidity &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; RS&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Personality&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: purple; font-family: Consolas; font-size: 14pt;"&gt;"Stepwise"&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Run&lt;STRONG&gt;(&lt;/STRONG&gt; Prob to Enter&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 14pt; font-family: Consolas;"&gt;0.05&lt;/STRONG&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; Prob to Leave&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 14pt; font-family: Consolas;"&gt;0.01&lt;/STRONG&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG style="color: black; font-size: 14pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: green; font-size: 14pt; font-family: Consolas;"&gt;/* Run the stepwise regression */&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;fm_step &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG style="color: #f03246; font-size: 14pt; font-family: Consolas;"&gt;Go&lt;/STRONG&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: green; font-size: 14pt; font-family: Consolas;"&gt;/* Wait(0) does not work to wait until the SR finished it’s job, wait(10) waits too long */&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: #0000dd; font-family: Consolas; font-size: 14pt;"&gt;wait&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-family: Consolas; font-size: 14pt;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: green; font-size: 14pt; font-family: Consolas;"&gt;/* Run the model for the selected variables */&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 14pt;"&gt;fm_step &lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG style="color: #f03246; font-size: 14pt; font-family: Consolas;"&gt;Run Model&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 14pt;"&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 06:03:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13336#M12589</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2015-09-10T06:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13337#M12590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Wait( seconds ) function pauses JMP for the specified amount of time. Usually JMP proceeds to evaluate each line as fast as possible, even if previous lines have not completed yet. The Wait( 0 ) is a special case that causes JMP to synchronize on-going computation before proceeding with the next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree that Wait() and Schedule() will not work if your case. Have you tried the Finish method instead of the Go method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 13:45:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13337#M12590</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2015-09-10T13:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13338#M12591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finish worked &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.jmp.com/7.0.1.7.0.1.0_7c8e8bd/images/emoticons/happy.png"&gt;&lt;/SPAN&gt; Even without wait(0). Great!&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 21:22:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13338#M12591</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2015-09-10T21:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13339#M12592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm new to JMP scripting, could you please show me how to use Finish method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2015 07:03:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13339#M12592</guid>
      <dc:creator>cjan01</dc:creator>
      <dc:date>2015-12-29T07:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule a task in JMP script</title>
      <link>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13340#M12593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The scripting index ('Help &amp;gt; Scripting Index') has an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier; color: #032ce4;"&gt;Names Default To Here&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&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="margin: 0px; font-size: 12px; line-height: normal; 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/Fitness.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="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;obj &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; Fit Model&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;Y&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Oxy &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;Effects&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Runtime&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;Weight&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;RunPulse&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;RstPulse&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;:&lt;/SPAN&gt;MaxPulse&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&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="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;Personality&lt;STRONG&gt;(&lt;/STRONG&gt; Stepwise &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;SPAN class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/SPAN&gt;Run&lt;/P&gt;&lt;P style="margin: 0px; font-size: 12px; line-height: normal; font-family: Courier;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier; font-size: 12px; color: #000000;"&gt;obj &lt;/SPAN&gt;&lt;SPAN style="color: #011993; font-family: Courier; font-size: 12px;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier; font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #011993; font-family: Courier; font-size: 12px;"&gt;Finish&lt;/STRONG&gt;&lt;SPAN style="color: #011993; font-family: Courier; font-size: 12px;"&gt;;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2016 08:44:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Schedule-a-task-in-JMP-script/m-p/13340#M12593</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2016-01-04T08:44:19Z</dc:date>
    </item>
  </channel>
</rss>

