<?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: From Interpolation to Finding Closets Value in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/394030#M64443</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3552"&gt;@brady_brady&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your help. I was sort of on the right track with the :Compression + 1 but didn't consider the absolute value. Works like a charm.&lt;/P&gt;</description>
    <pubDate>Thu, 17 Jun 2021 12:20:17 GMT</pubDate>
    <dc:creator>Yngeinstn</dc:creator>
    <dc:date>2021-06-17T12:20:17Z</dc:date>
    <item>
      <title>From Interpolation to Finding Closets Value</title>
      <link>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/393853#M64426</link>
      <description>&lt;P&gt;I received some help long ago with trying to interpolate a -1 db Compression which worked flawlessly however the customer has changed their minds on the who interpolation thing. Now they just want the input value closest to the -1 db compression and then using that apply a spec limit to the Pout. I am looking for some assistance in trying to determine this point. Attached is a data table that has the raw data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grouping would be {"wafer_number", "RowCol", "input"} . There are 36 readings for each input at different compression values. I only need the closest to -1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:32:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/393853#M64426</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2023-06-10T23:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: From Interpolation to Finding Closets Value</title>
      <link>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/393875#M64428</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to do this in the present table, you can add a formula column with the following formula, which compares each row's distance to -1&amp;nbsp; ( abs ( :compression -&amp;nbsp; (-1))), which is (abs(:compression + 1)), to the minimum value found in the group.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Abs( :Compression + 1 ) == Col Minimum( Abs( :Compression + 1 ), :wafer_number, :RowCol, :input )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thus, the rows in this column equaling 1 are the rows you want... you could select and subset them, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to directly subset without creating a new column, and don't mind using JSL, you could use this:&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 = current data table();

dtSub = dt &amp;lt;&amp;lt; subset(
	selected columns(0), 
	rows(dt &amp;lt;&amp;lt; get rows where(Abs( :Compression + 1 ) == Col Minimum( Abs( :Compression + 1 ), :wafer_number, :RowCol, :input )))
);

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Brady&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jun 2021 22:24:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/393875#M64428</guid>
      <dc:creator>brady_brady</dc:creator>
      <dc:date>2021-06-16T22:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: From Interpolation to Finding Closets Value</title>
      <link>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/394030#M64443</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3552"&gt;@brady_brady&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your help. I was sort of on the right track with the :Compression + 1 but didn't consider the absolute value. Works like a charm.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 12:20:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/From-Interpolation-to-Finding-Closets-Value/m-p/394030#M64443</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2021-06-17T12:20:17Z</dc:date>
    </item>
  </channel>
</rss>

