<?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: JSL to save smoother formula from Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417721#M66685</link>
    <description>&lt;P&gt;No problem.&lt;/P&gt;
&lt;P&gt;I did find that you can save the predicted values from a Kernel Smoother fit using the Bivariate (Fit Y by X) platform. &lt;A href="https://community.jmp.com/t5/Discussions/Help-with-Kernel-Smoother-output/m-p/17082" target="_self"&gt;See this thread&lt;/A&gt;. So that might be a solution for you?&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;</description>
    <pubDate>Mon, 13 Sep 2021 14:03:44 GMT</pubDate>
    <dc:creator>Phil_Kay</dc:creator>
    <dc:date>2021-09-13T14:03:44Z</dc:date>
    <item>
      <title>JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417262#M66636</link>
      <description>&lt;P&gt;I have been trying to figure out how to save the smoother formula from Graph Builder using JSL with no success. I also tried to the function Spline Smooth() on a data table but that also did not work for me. What I am trying to do is automate a process that I do over and over using the column that is saved from the smoother in Graph Builder. It is quite lengthy process and I can script all parts of it except the smoother save and everything depends on the column of smoothed data. Does anyone have any ideas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Examples of what I have tried are shown below:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
    Show Control Panel( 0 ),
    Variables( X( :x ), Y( :y ), Overlay( :type ) ),
    Elements( Points( X, Y, Legend( 14 ) ), Smoother( X, Y, Legend( 15 ) ) ),
    Save Smoother Formula( 1 )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;var = Graph Builder(
    Show Control Panel( 0 ),
    Variables( X( :x ), Y( :y ), Overlay( :type ) ),
    Elements( Points( X, Y, Legend( 14 ) ), Smoother( X, Y, Legend( 15 ) ) ),
);
var &amp;lt;&amp;lt; Save Smoother Formula;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:17:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417262#M66636</guid>
      <dc:creator>danf</dc:creator>
      <dc:date>2023-06-11T11:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417709#M66682</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;In general you should look in the JMP Scripting Index from the help menu to find the command that you need.&lt;/P&gt;
&lt;P&gt;In this case though it seems like this is not a scriptable feature. I looked in the Index and could not find anything. I also saw some other questions about this in the JMP Community and they did not have solutions.&lt;/P&gt;
&lt;P&gt;You might want to add this to the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 13:17:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417709#M66682</guid>
      <dc:creator>Phil_Kay</dc:creator>
      <dc:date>2021-09-13T13:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417716#M66683</link>
      <description>&lt;P&gt;Thanks Phil.&amp;nbsp;I'll put in a wish list request.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 13:55:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417716#M66683</guid>
      <dc:creator>danf</dc:creator>
      <dc:date>2021-09-13T13:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417721#M66685</link>
      <description>&lt;P&gt;No problem.&lt;/P&gt;
&lt;P&gt;I did find that you can save the predicted values from a Kernel Smoother fit using the Bivariate (Fit Y by X) platform. &lt;A href="https://community.jmp.com/t5/Discussions/Help-with-Kernel-Smoother-output/m-p/17082" target="_self"&gt;See this thread&lt;/A&gt;. So that might be a solution for you?&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 14:03:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417721#M66685</guid>
      <dc:creator>Phil_Kay</dc:creator>
      <dc:date>2021-09-13T14:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417724#M66686</link>
      <description>&lt;P&gt;I think that will probably work. I was just looking at it when you posted this. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 14:08:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417724#M66686</guid>
      <dc:creator>danf</dc:creator>
      <dc:date>2021-09-13T14:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417840#M66698</link>
      <description>&lt;P&gt;The command on the smoother element in its red triangle menu is Save Formula. You can send it via JSL using the Update Element command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb = Graph Builder(
	Variables( X( :height ), Y( :weight ) ),
	Elements( Points( X, Y, Legend( 2 ) ), Smoother( X, Y, Legend( 3 )) )
);
gbb = Report( gb )[Graph Builder Box( 1 )];
gbb &amp;lt;&amp;lt; Update Element( 1, 1, 2, {Save Formula} );
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Sep 2021 18:16:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/417840#M66698</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2021-09-13T18:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to save smoother formula from Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/418167#M66719</link>
      <description>&lt;P&gt;Thanks Xan! That really works great! I was also able to change the lambda value with a little research in the Scripting Guide. I'm okay with the default but I have found that a different value generally works better for my data. Also I am using an overlay variable and that works great too! I really appreciate the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 15:04:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-save-smoother-formula-from-Graph-Builder/m-p/418167#M66719</guid>
      <dc:creator>danf</dc:creator>
      <dc:date>2021-09-14T15:04:22Z</dc:date>
    </item>
  </channel>
</rss>

