<?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: Removing Rows with insufficient data in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588616#M79359</link>
    <description>&lt;P&gt;Thank you! I was definitely over complicating this!&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jan 2023 20:08:33 GMT</pubDate>
    <dc:creator>trevorphysics</dc:creator>
    <dc:date>2023-01-10T20:08:33Z</dc:date>
    <item>
      <title>Removing Rows with insufficient data</title>
      <link>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588559#M79353</link>
      <description>&lt;P&gt;I am running electrical characterization on a bunch of devices. Some of those devices are failing immediately and when I run the JMP app I made they show up as blank or single point plots that take up a large portion of the my screen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to delete all of the data with only a few points. I have indexed the number of I have tried to get a maximum index and then delete where that number is below 1000..&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;// Make a new table to find maximum Tag
dt &amp;lt;&amp;lt; New Column( "Maximum[Tag]",
	Numeric,
	"Continuous",
	Format( "Best", 12 ),
	Formula( Col Maximum( :Tag ) )
) &amp;lt;&amp;lt; Move Selected Columns( {:"Maximum[Tag]"n}, after( :Tag ) );

// Find where Maximum[Tag] &amp;lt; 1000 and delete those rows
dt &amp;lt;&amp;lt; Select where( :"Maximum[Tag]"n &amp;lt; 1000 );
dt &amp;lt;&amp;lt; delete rows;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I'm running into the problem where it's not finding the maximum for each File Name (String in column :File Name) and is just coming back with the maximum in the entire column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to iterate this for each item in my File Name column? Or is there a better way of clearing out this data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:43:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588559#M79353</guid>
      <dc:creator>trevorphysics</dc:creator>
      <dc:date>2023-06-08T16:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with insufficient data</title>
      <link>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588588#M79356</link>
      <description>&lt;P&gt;Use &lt;EM&gt;:"File Name"n&lt;/EM&gt; as byVar in &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/statistical-functions-2.shtml?os=win&amp;amp;source=application#ww4866150" target="_self"&gt;Col Maximum&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; New Column("Maximum Value for Each Age and Sex Group",
	Formula(Col Maximum(:height, :age, :sex))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Jan 2023 19:09:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588588#M79356</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-01-10T19:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with insufficient data</title>
      <link>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588616#M79359</link>
      <description>&lt;P&gt;Thank you! I was definitely over complicating this!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 20:08:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Removing-Rows-with-insufficient-data/m-p/588616#M79359</guid>
      <dc:creator>trevorphysics</dc:creator>
      <dc:date>2023-01-10T20:08:33Z</dc:date>
    </item>
  </channel>
</rss>

