<?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 Range Check () with Set Property()? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704455#M88861</link>
    <description>&lt;P&gt;Your script almost works.&amp;nbsp; You'd just need to split in into two messages, because &amp;lt;&amp;lt;Set Property only handles one property at a time.&amp;nbsp; Your syntax and&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;'s syntax for adding a Range Check are both correct.&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");
lsl1 = 13;
usl1 = 110;
lsl2 = 5;
usl2 = 117;
:weight &amp;lt;&amp;lt; Set Property( "Spec Limit", {LSL( lsl1 ), USL( usl1 )} ) &amp;lt;&amp;lt; Set Property( "Range Check", LTLT( lsl2, usl2 ) );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Nov 2023 20:37:27 GMT</pubDate>
    <dc:creator>mmarchandTSI</dc:creator>
    <dc:date>2023-11-30T20:37:27Z</dc:date>
    <item>
      <title>How to use Range Check () with Set Property()?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704352#M88840</link>
      <description>&lt;P&gt;In JSL, the following works&amp;nbsp; (in JMP 16.2)&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column( dt, myCol ) &amp;lt;&amp;lt; set property("Spec Limits", {LSL( myLSL), USL(myUSL)});&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;However, I am trying to also use Range Check within set property following the scripting guide (for JMP 16)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Neo_0-1701361846440.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59157i3E849A8DEB457F1A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_0-1701361846440.png" alt="Neo_0-1701361846440.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column( dt, myCol ) &amp;lt;&amp;lt; set property("Spec Limits", {LSL( myLSL), USL( myUSL )}, "Range Check", LTLT (myLSL2, myUSL2) ));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;where myLSL/myUSL &amp;amp; myLSL2/myUSL2 are supplied from above. This is not working (in JMP 16.2). Where am I going wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My idea is to plot data points which are in the vicinity of the spec limits by supressing/ignoring outliers&lt;A href="https://community.jmp.com/t5/Discussions/supress-outliers/m-p/187157/highlight/true#M40572" target="_self"&gt;&amp;nbsp; inspired by&lt;/A&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 16:58:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704352#M88840</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-11-30T16:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Range Check () with Set Property()?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704414#M88847</link>
      <description>&lt;P&gt;The syntax for Range check is slightly different:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:height &amp;lt;&amp;lt; set property("Spec Limits", {LSL( 10), USL( 20 )} ) &amp;lt;&amp;lt; Range Check( LELE( 0, 100 ) );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The huge benefit of JSL compared to any other scripting language: there is the enhanced log&lt;BR /&gt;-&amp;gt; just use the GUI and let Jmp tell you the right syntax :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so, no need to even Google for it ...&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 17:46:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704414#M88847</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-11-30T17:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Range Check () with Set Property()?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704455#M88861</link>
      <description>&lt;P&gt;Your script almost works.&amp;nbsp; You'd just need to split in into two messages, because &amp;lt;&amp;lt;Set Property only handles one property at a time.&amp;nbsp; Your syntax and&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;'s syntax for adding a Range Check are both correct.&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");
lsl1 = 13;
usl1 = 110;
lsl2 = 5;
usl2 = 117;
:weight &amp;lt;&amp;lt; Set Property( "Spec Limit", {LSL( lsl1 ), USL( usl1 )} ) &amp;lt;&amp;lt; Set Property( "Range Check", LTLT( lsl2, usl2 ) );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 20:37:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-Range-Check-with-Set-Property/m-p/704455#M88861</guid>
      <dc:creator>mmarchandTSI</dc:creator>
      <dc:date>2023-11-30T20:37:27Z</dc:date>
    </item>
  </channel>
</rss>

