<?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 Can I make Formula Depot invisible? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729344#M91173</link>
    <description>&lt;P&gt;Hi - I am using Formula Depot as follows to run the NN model fit from table &lt;FONT face="helvetica"&gt;dt1&lt;/FONT&gt; on a new table dt2:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nn = dt1 &amp;lt;&amp;lt; Neural(
	Y( :Vg ),
	X( :log10Id ),
	Informative Missing( 0 ),
	Validation Method( "Holdback", 0.3333 ),
	Fit( NTanH( 3 ) ), Invisible
	);
	fd1 = Formula Depot();
	nn &amp;lt;&amp;lt; Publish Prediction Formula;
	fd1 &amp;lt;&amp;lt; Run Scripts(Table(dt2), Formulas(1));
	fd1 &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would like to ideally run this with no windows opening up as this code runs inside a for loop. However, when I run the code, the Formula Depot window opens up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fd1 = Formula Depot(Invisible);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fd1 = Formula Depot() &amp;lt;&amp;lt; Invisible;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But, none of them work. Is there any suggestion?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Mar 2024 21:35:35 GMT</pubDate>
    <dc:creator>shrirams</dc:creator>
    <dc:date>2024-03-01T21:35:35Z</dc:date>
    <item>
      <title>Can I make Formula Depot invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729344#M91173</link>
      <description>&lt;P&gt;Hi - I am using Formula Depot as follows to run the NN model fit from table &lt;FONT face="helvetica"&gt;dt1&lt;/FONT&gt; on a new table dt2:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nn = dt1 &amp;lt;&amp;lt; Neural(
	Y( :Vg ),
	X( :log10Id ),
	Informative Missing( 0 ),
	Validation Method( "Holdback", 0.3333 ),
	Fit( NTanH( 3 ) ), Invisible
	);
	fd1 = Formula Depot();
	nn &amp;lt;&amp;lt; Publish Prediction Formula;
	fd1 &amp;lt;&amp;lt; Run Scripts(Table(dt2), Formulas(1));
	fd1 &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would like to ideally run this with no windows opening up as this code runs inside a for loop. However, when I run the code, the Formula Depot window opens up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fd1 = Formula Depot(Invisible);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fd1 = Formula Depot() &amp;lt;&amp;lt; Invisible;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But, none of them work. Is there any suggestion?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 21:35:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729344#M91173</guid>
      <dc:creator>shrirams</dc:creator>
      <dc:date>2024-03-01T21:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can I make Formula Depot invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729374#M91177</link>
      <description>&lt;P&gt;Here is my suggestion is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;window(dt1&amp;lt;&amp;lt;get name || " - Formula Depot")&amp;lt;&amp;lt;visibility("hidden")&amp;lt;&amp;lt;minimize window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 02 Mar 2024 06:01:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729374#M91177</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-03-02T06:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can I make Formula Depot invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729582#M91211</link>
      <description>&lt;P&gt;Hi Jim - thanks for the suggestion. At what point do you recommend putting in that code? If it is after&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fd1 = Formula Depot();&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;then the window still opens up momentarily before your suggested code snippet suppresses it. Is there some way to not have the Formula Depot window pop up in the first place?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 04:19:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729582#M91211</guid>
      <dc:creator>shrirams</dc:creator>
      <dc:date>2024-03-04T04:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can I make Formula Depot invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729584#M91213</link>
      <description>&lt;P&gt;I think I found the solution using a different forum post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;fd1 = Formula Depot() &amp;lt;&amp;lt; Show Window(0); &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;suppresses the window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 05:00:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-I-make-Formula-Depot-invisible/m-p/729584#M91213</guid>
      <dc:creator>shrirams</dc:creator>
      <dc:date>2024-03-04T05:00:23Z</dc:date>
    </item>
  </channel>
</rss>

