<?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: Script to Save Residuals of Spline Fit in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57069#M32016</link>
    <description>&lt;P&gt;Thanks Jim! It works. If I need to add "GroupBy" in Bivariate is it posible to save all the residuals? It looks like JMP only keeps the last fit line. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-jsl"&gt;&lt;CODE class="  language-jsl"&gt;&lt;SPAN class="token function"&gt;Names Default To Here&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
dt &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Open&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
obj &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; Bivariate&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
	Y&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Weight &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
	X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Height &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        GroupBy( :Team),
	Fit Spline&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; 0.1, Standardized &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
obj &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;Curve&lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;]&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token messages"&gt; Save Residuals&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 16 May 2018 05:14:27 GMT</pubDate>
    <dc:creator>Peng</dc:creator>
    <dc:date>2018-05-16T05:14:27Z</dc:date>
    <item>
      <title>Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57060#M32008</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone knows how to write a script to sava residuals (or predicteds) as a new colum for spline fit? It is easy if i do it manually, just need to select Save Residuals in the dropdown red triangle. I&amp;nbsp;know how to write scripts to save residuals as a new column for liner fit using Fit Model. However, I often need to fit time-trend data using standardized x spline fit, and i am not sure if there's a easier way to do so. My final goal is to aquire residuals or predicteds for several varialbles in a loop, so a simple script will help a lot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Spline fit.png" style="width: 481px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/10744i05987FBEFAA1D68A/image-dimensions/481x580?v=v2" width="481" height="580" role="button" title="Spline fit.png" alt="Spline fit.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 00:35:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57060#M32008</guid>
      <dc:creator>Peng</dc:creator>
      <dc:date>2018-05-16T00:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57061#M32009</link>
      <description>&lt;P&gt;You can find these types of syntax in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index==&amp;gt;Bivariate==&amp;gt;Bivariate Curve&lt;/P&gt;
&lt;P&gt;Here is the scripting index example from that entry&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Bivariate(
	Y( :Weight ),
	X( :Height ),
	Fit Polynomial( 3 )
);
obj &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Save Residuals);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 May 2018 00:51:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57061#M32009</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-05-16T00:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57069#M32016</link>
      <description>&lt;P&gt;Thanks Jim! It works. If I need to add "GroupBy" in Bivariate is it posible to save all the residuals? It looks like JMP only keeps the last fit line. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-jsl"&gt;&lt;CODE class="  language-jsl"&gt;&lt;SPAN class="token function"&gt;Names Default To Here&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
dt &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Open&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
obj &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; Bivariate&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
	Y&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Weight &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
	X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Height &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        GroupBy( :Team),
	Fit Spline&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; 0.1, Standardized &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
obj &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;Curve&lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;]&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token messages"&gt; Save Residuals&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 05:14:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57069#M32016</guid>
      <dc:creator>Peng</dc:creator>
      <dc:date>2018-05-16T05:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57074#M32020</link>
      <description>&lt;P&gt;Each separate "Fit" that is specified has to have their residuals saved separately.&amp;nbsp; The substript on the "Curve[]" reference is what handles this.&amp;nbsp; The example below has a GroupBy(:Sex) which will produce a Fit for Females, "F" and one for Males, "M".&amp;nbsp; Thus, 2 "Save Residuals" must be issued.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Bivariate(
	Y( :Weight ),
	X( :Height ),        
	GroupBy( :sex),
	Fit Spline( 0.1, Standardized )
);
obj &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Save Residuals);
obj &amp;lt;&amp;lt; (Curve[2] &amp;lt;&amp;lt; Save Residuals);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;As I was testing out this code for your example.&amp;nbsp; I discovered that JMP 14 does not work for the Save Residuals for a Spline Fit.&amp;nbsp; I will be passing that on to JMP Support as a bug.&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 09:38:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57074#M32020</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-05-16T09:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57112#M32035</link>
      <description>&lt;P&gt;Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed the same issue for JMP 14.&amp;nbsp; JMP support states it is fixed in JMP 14.1 (August?).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a small modification of Jim's script. It creates a single column of residuals. It uses the new (in JMP 13) syntax for multiple subsections of a data table. This is getting the residual columns by row and finding the max (actually it gets the only non-empty value).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

obj = Bivariate(
	Y( :Weight ),
	X( :Height ),        GroupBy( :sex),
	Fit Spline( 0.1, Standardized )
);

//Find how many in a group. We know it is 2 for Big Class
summarize(_by = By(:sex));

//Find out how many columns before adding residuals
ncpre = ncol(dt);
_nby  = nitems(_by);

for(i=1, i&amp;lt;=_nby, i++,
  obj &amp;lt;&amp;lt; (Curve[i] &amp;lt;&amp;lt; Save Residuals);
  wait(0);
);

idx = ncpre+1::(ncpre+_nby);

//create a single column of residuals
resids = dt &amp;lt;&amp;lt; New Column("Weight v Height Spline Residuals",
	Numeric, Continuous,	
   &amp;lt;&amp;lt; Set Each Value( max(dt[row(),idx]) )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 21:17:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57112#M32035</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-05-16T21:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57131#M32052</link>
      <description>&lt;P&gt;Thank you all for the solutions!! The&amp;nbsp;&lt;SPAN&gt;syntax for multiple subsections of a data table does not work in JMP12. I read another discussion about returning max value of mutiple rows, a similar method was also appllied for JMP13. Is there a better way to acquire max values across mutiple rows in JMP12? Writing a formula to compare row values for unknown number of rows doesn't seem to be efficient. Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 05:03:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57131#M32052</guid>
      <dc:creator>Peng</dc:creator>
      <dc:date>2018-05-17T05:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57132#M32053</link>
      <description>&lt;P&gt;I really like the new JMP 13 table subset reference. However, there still is an easy method to get the values with message Get as Matrix. The key syntax is dt &amp;lt;&amp;lt; get as matrix( list | index ).&amp;nbsp; There is no rowwise max function, but there is VMax function which is a columnwise max.&amp;nbsp; I tested this in JMP 12.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

obj = Bivariate(
	Y( :Weight ),
	X( :Height ),        GroupBy( :sex),
	Fit Spline( 0.1, Standardized )
);

//Find how many in a group. We know it is 2 for Big Class
summarize(_by = By(:sex));

//Find out how many columns before adding residuals
ncpre = ncol(dt);
_nby  = nitems(_by);

for(i=1, i&amp;lt;=_nby, i++,
  obj &amp;lt;&amp;lt; (Curve[i] &amp;lt;&amp;lt; Save Residuals);
  wait(0);
);

idx = ncpre+1::(ncpre+_nby);
cmat = Transpose(VMax(Transpose(dt &amp;lt;&amp;lt; get as matrix(idx)))); //matrix _nby x nrow(dt)
/*the previous line of code is performing these tasks
  - get the columns of residuals into a matrix of size nrow(dt) x _nby
  - create the transpose: coloumns are rows and rows are columns, size _nby x nrow(dt)
  - Vmax is a vertical maximum, it finds the max of each column (previously rows)
    returns a 1 x nrow(dt) vector, a row vector
  - transpose again so it is a column vector
*/

//create a single column of residuals
resids = dt &amp;lt;&amp;lt; New Column("Weight v Height Spline Residuals",
	Numeric, Continuous, Values( cmat )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 05:48:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57132#M32053</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-05-17T05:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57407#M32120</link>
      <description>&lt;P&gt;Cool, this is awesome!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just one more question:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I do&amp;nbsp;&lt;CODE class="  language-jsl"&gt; obj &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;Curve&lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="token punctuation"&gt;]&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token messages"&gt; Save Residuals&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&amp;nbsp;&lt;/SPAN&gt;&lt;/CODE&gt;and group by (:sex), JMP calculated residuals for "M" and "F" and saved in different columns with some empty cells. That's why "transpose" is needed to get all residuals in one column. However, if I do &amp;lt;&amp;lt;save Predicteds and group by (:sex), it actually calculates Predicteds for all Heights for both "M" and "F". I guess by default JMP does that even if I do it manually in the drop. Is there a way to claculate Predicteds for individual sex only?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 18 May 2018 23:14:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57407#M32120</guid>
      <dc:creator>Peng</dc:creator>
      <dc:date>2018-05-18T23:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57410#M32123</link>
      <description>&lt;P&gt;Peng,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, this seems inconsistent, however, I am guessing this is done on purpose to compare the predicteds (for example, the males are a hold-out set for the predicteds based upon females and vice versa.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To create a single column of Predicteds based upon the Group By&amp;nbsp; model create a new column with a formula or set each value expression&lt;/P&gt;&lt;P&gt;If( :sex=="M", column for the male predicteds, :sex=="F",&amp;nbsp;&lt;SPAN&gt;column for the male predicteds);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you want a column that looks like the residual columns, then create a columnm for males and use an expression like&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If( :sex=="M", column for the male predicteds, empty() );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Then do the same for females.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 May 2018 01:40:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/57410#M32123</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-05-19T01:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Save Residuals of Spline Fit</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/324809#M57418</link>
      <description>&lt;P&gt;Hi Jim&lt;/P&gt;&lt;P&gt;Any resolution/fix to so that we can save residual in v14?&lt;/P&gt;&lt;P&gt;thanks for the help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 21:13:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Save-Residuals-of-Spline-Fit/m-p/324809#M57418</guid>
      <dc:creator>deveshchugh</dc:creator>
      <dc:date>2020-10-21T21:13:46Z</dc:date>
    </item>
  </channel>
</rss>

