<?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: text in the filtre in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765403#M94511</link>
    <description>&lt;P&gt;Is this what you are looking for?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1718282204115.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65147iD57015B0529A5C50/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1718282204115.png" alt="txnelson_0-1718282204115.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

New Window( "Oneway Analysis",
	V List Box(
		Text Box( "    Please Click on the Age" ),
		Text Box( "    Value to Change the Analysis" ),
		Text Box( " " ),
		Oneway(
			Y( :height ),
			X( :sex ),
			Means( 1 ),
			Mean Diamonds( 1 ),
			Local Data Filter( Add Filter( columns( :age ), Display( :age, N Items( 6 ) ) ) )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 13 Jun 2024 12:37:39 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2024-06-13T12:37:39Z</dc:date>
    <item>
      <title>text in the filtre</title>
      <link>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765380#M94507</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;How can I add text to the filters to explain them better?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 11:44:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765380#M94507</guid>
      <dc:creator>ResamplingFawn4</dc:creator>
      <dc:date>2024-06-13T11:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: text in the filtre</title>
      <link>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765403#M94511</link>
      <description>&lt;P&gt;Is this what you are looking for?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1718282204115.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65147iD57015B0529A5C50/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1718282204115.png" alt="txnelson_0-1718282204115.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

New Window( "Oneway Analysis",
	V List Box(
		Text Box( "    Please Click on the Age" ),
		Text Box( "    Value to Change the Analysis" ),
		Text Box( " " ),
		Oneway(
			Y( :height ),
			X( :sex ),
			Means( 1 ),
			Mean Diamonds( 1 ),
			Local Data Filter( Add Filter( columns( :age ), Display( :age, N Items( 6 ) ) ) )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2024 12:37:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765403#M94511</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-06-13T12:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: text in the filtre</title>
      <link>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765422#M94515</link>
      <description>&lt;P&gt;I like Jim's suggestion, but here's another that might work. Change the title of the Local Data Filter. You can click on the title twice to enter edit mode, then type another title.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="John_Powell_JMP_0-1718283835342.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65149i0C24FB34F7D52DDD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="John_Powell_JMP_0-1718283835342.png" alt="John_Powell_JMP_0-1718283835342.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Using JSL, it would be:&lt;/P&gt;
&lt;PRE&gt;Names Default To Here( 1 ); 
Open( "$SAMPLE_DATA/Big Class.jmp" ); 
Oneway( 
  Y( :height ),
  X( :sex ),
  Means( 1 ),
  Mean Diamonds( 1 ),
  Local Data Filter(
    &lt;STRONG&gt;Title( "Choose age(s) to display" )&lt;/STRONG&gt;,
    Add Filter( columns( :age ), Display( :age, N Items( 6 ) ) )
  )
);&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Jun 2024 12:16:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/text-in-the-filtre/m-p/765422#M94515</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2024-06-14T12:16:29Z</dc:date>
    </item>
  </channel>
</rss>

