<?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: Finding Min Value in a set of data and populating it in next column then selecting it to subset it in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535377#M75773</link>
    <description>&lt;P&gt;If you are building a script to do this analysis multiple times, then great!&lt;/P&gt;&lt;P&gt;If this is just a one time analysis, then the better way to do this is by making a graph and then selecting the points in the graph and subsetting them.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Aug 2022 06:27:47 GMT</pubDate>
    <dc:creator>pauldeen</dc:creator>
    <dc:date>2022-08-19T06:27:47Z</dc:date>
    <item>
      <title>Finding Min Value in a set of data and populating it in next column then selecting it to subset it</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/515791#M74252</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;From the attached test2.JMP file I am looking to eventually get Subset of Result.JMP.&lt;/P&gt;&lt;P&gt;so basically I am looking to:&lt;/P&gt;&lt;P&gt;1) find the min value until there is no data for -3dB column then populate that min value in the next column but same row&lt;/P&gt;&lt;P&gt;2) Select the rows with only those min value populated in another column&lt;/P&gt;&lt;P&gt;3) Subset the selected rows.&lt;/P&gt;&lt;P&gt;I tried min, col min, rank etc functions but with no luck.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finding that min value for only a set of rows (not all rows) in a particular column and then populating in next column is the main challenge.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:50:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/515791#M74252</guid>
      <dc:creator>LearningJMP</dc:creator>
      <dc:date>2023-06-10T23:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Min Value in a set of data and populating it in next column then selecting it to subset it</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/515858#M74260</link>
      <description>&lt;P&gt;Here is the formula that I cam up with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Row() == 1,
	theMin = 9999999999999;
	theCount = 0;
);
x = .;
If( Is Missing( :"-3dB"n ) == 0,
	If( theMIn &amp;gt;= :"-3dB"n,
		theMin = :"-3dB"n
	);
	If( Is Missing( Lag( :"-3dB"n, -1 ) ) == 1,
		x = theMin;
		theMin = 9999999999;
	,
		x = .
	);
);
x;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1656536057119.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43692i2797E51DFB3D1DE5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1656536057119.png" alt="txnelson_0-1656536057119.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 20:54:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/515858#M74260</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-06-29T20:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Min Value in a set of data and populating it in next column then selecting it to subset it</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535310#M75766</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2022 20:47:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535310#M75766</guid>
      <dc:creator>LearningJMP</dc:creator>
      <dc:date>2022-08-18T20:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Min Value in a set of data and populating it in next column then selecting it to subset it</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535377#M75773</link>
      <description>&lt;P&gt;If you are building a script to do this analysis multiple times, then great!&lt;/P&gt;&lt;P&gt;If this is just a one time analysis, then the better way to do this is by making a graph and then selecting the points in the graph and subsetting them.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 06:27:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535377#M75773</guid>
      <dc:creator>pauldeen</dc:creator>
      <dc:date>2022-08-19T06:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Min Value in a set of data and populating it in next column then selecting it to subset it</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535561#M75790</link>
      <description>&lt;P&gt;Thank you Pauldeen.&lt;/P&gt;&lt;P&gt;It was for multiple times so had to create a script&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 16:59:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Min-Value-in-a-set-of-data-and-populating-it-in-next/m-p/535561#M75790</guid>
      <dc:creator>LearningJMP</dc:creator>
      <dc:date>2022-08-19T16:59:32Z</dc:date>
    </item>
  </channel>
</rss>

