<?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: how to use JSL to delete missing data？ in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45971#M26214</link>
    <description>&lt;P&gt;You just need to select the rows to be deleted, and then delete them....see script below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = New Table( "sample",
	Add Rows( 20 ),
	New Column( "Height",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[59, 61, ., 66, 52, 60, 61, ., 60, 61, 56, 65, ., 58, 59, 61, ., 65, 63, 62]
		)
	),
	New Column( "weight",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[95, 123, 74, 145, 64, 84, 128, 79, 112, 107, 67, 98, 105, 95, 79, 81, 91, 142, 84,
			85]
		)
	)
);

dt &amp;lt;&amp;lt; select where( Is Missing( :Height ) == 1 );

dt &amp;lt;&amp;lt; delete rows;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 16 Oct 2017 13:30:59 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2017-10-16T13:30:59Z</dc:date>
    <item>
      <title>how to use JSL to delete missing data？</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45968#M26211</link>
      <description>&lt;P&gt;dear all&lt;/P&gt;
&lt;P&gt;now&amp;nbsp; if&amp;nbsp; you&amp;nbsp; want to&amp;nbsp; detele&amp;nbsp; missing data , generally&amp;nbsp; you must select "missing data pattern ' to detele.&lt;/P&gt;
&lt;P&gt;if i want to detele&amp;nbsp; missing data automaticlly？&amp;nbsp; how i&amp;nbsp; can&amp;nbsp; write JSL?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 13:30:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45968#M26211</guid>
      <dc:creator>TONYMA</dc:creator>
      <dc:date>2017-10-16T13:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to use JSL to delete missing data？</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45970#M26213</link>
      <description>&lt;P&gt;Use Is Missing()&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 13:30:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45970#M26213</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2017-10-16T13:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to use JSL to delete missing data？</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45971#M26214</link>
      <description>&lt;P&gt;You just need to select the rows to be deleted, and then delete them....see script below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = New Table( "sample",
	Add Rows( 20 ),
	New Column( "Height",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[59, 61, ., 66, 52, 60, 61, ., 60, 61, 56, 65, ., 58, 59, 61, ., 65, 63, 62]
		)
	),
	New Column( "weight",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[95, 123, 74, 145, 64, 84, 128, 79, 112, 107, 67, 98, 105, 95, 79, 81, 91, 142, 84,
			85]
		)
	)
);

dt &amp;lt;&amp;lt; select where( Is Missing( :Height ) == 1 );

dt &amp;lt;&amp;lt; delete rows;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Oct 2017 13:30:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-use-JSL-to-delete-missing-data/m-p/45971#M26214</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-10-16T13:30:59Z</dc:date>
    </item>
  </channel>
</rss>

