<?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: Data Filter Display Options in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213914#M42768</link>
    <description>&lt;P&gt;Your request is confusing. The Data Filter object automatically handles different data types correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you asking a more general question about the types of display box objects that work with different data types? I am not aware of any "cheat sheet" but the Help &amp;gt; Scripting Index set to Display Boxes is very useful. If you think about data types (numeric versus character), the choices for display boxes are usually pretty obvious. For example, Number Col Box versus String Col Box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also examine a built-in platform by right-clicking on the disclosure button to the left of any outline box and select Edit &amp;gt; Show Tree Structure. You will see a new browser with all the display boxes identified.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2019 14:13:12 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2019-06-20T14:13:12Z</dc:date>
    <item>
      <title>Data Filter Display Options</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213900#M42764</link>
      <description>&lt;P&gt;It appears that certain data types allow for only specific display options in a data filter. I can't find any information regarding any sort of restrictions. For instance if I used a data type below no matter how i script it it won't let me use lets say Blocks Display. Is there a cheat sheet that tells me how the data needs to be structured&amp;nbsp; (assigned) so i can format it in a way that I can use the Display Options of my choice. I do know if i use Numeric Continuous I have access to only a slide bar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Type: &amp;lt;&amp;lt; Data Type( Numeric ) &amp;lt;&amp;lt; Modeling Type( Nominal );&lt;/P&gt;&lt;P&gt;Scriptable Display Box: {???, ???, ???}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Type: &amp;lt;&amp;lt; Data Type( Chracter);&lt;/P&gt;&lt;P&gt;Scriptable Display Box: {???, ???, ???}&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 13:25:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213900#M42764</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-06-20T13:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter Display Options</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213914#M42768</link>
      <description>&lt;P&gt;Your request is confusing. The Data Filter object automatically handles different data types correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you asking a more general question about the types of display box objects that work with different data types? I am not aware of any "cheat sheet" but the Help &amp;gt; Scripting Index set to Display Boxes is very useful. If you think about data types (numeric versus character), the choices for display boxes are usually pretty obvious. For example, Number Col Box versus String Col Box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also examine a built-in platform by right-clicking on the disclosure button to the left of any outline box and select Edit &amp;gt; Show Tree Structure. You will see a new browser with all the display boxes identified.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 14:13:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213914#M42768</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-06-20T14:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter Display Options</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213915#M42769</link>
      <description>Thank you..</description>
      <pubDate>Thu, 20 Jun 2019 14:16:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213915#M42769</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-06-20T14:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter Display Options</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213935#M42774</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11704"&gt;@Yngeinstn&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Blocks Displays *do* work for numeric but categorically modeled variables, but, JMP tries to keep the display usable so when there are many, many levels of the variables it is resistant to switching to blocks. The workaround I've found in these cases is to toggle to something like the checkbox, and then switch to the blocks. For whatever reason that coaxes JMP into displaying the Blocks view. The example below demonstrates this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open("$SAMPLE_DATA\Big Class.jmp");

dt:weight &amp;lt;&amp;lt; Modeling Type( Nominal );

dataFilter = dt &amp;lt;&amp;lt; Data Filter( Add Filter( columns( :weight ) ) );

Wait(1);

dataFilter &amp;lt;&amp;lt; Display( :weight, Blocks Display );
//won't work, JMP decides there are too many levels

Wait(2);

dataFilter &amp;lt;&amp;lt; Display( :weight, Checkbox Display );
dataFilter &amp;lt;&amp;lt; Display( :weight, Blocks Display );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:17:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213935#M42774</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2019-06-20T15:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter Display Options</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213941#M42776</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;. It is interesting that you brought that up because I didn't understand why i was able to change the display box to a format i prefer (Blocks Display) until your reply. I appreciate the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 16:04:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/213941#M42776</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-06-20T16:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data Filter Display Options</title>
      <link>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/238582#M47142</link>
      <description>I resolved this but just placing an Include( "$MY_SCRIPTS/B.jsl" ); in place of calling out the expression.. Thanks</description>
      <pubDate>Sun, 15 Dec 2019 15:16:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-Filter-Display-Options/m-p/238582#M47142</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-12-15T15:16:33Z</dc:date>
    </item>
  </channel>
</rss>

