- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
text in the filtre
Hi,
How can I add text to the filters to explain them better?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: text in the filtre
Is this what you are looking for?
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 ) ) ) )
)
)
);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: text in the filtre
Created:
Jun 13, 2024 09:06 AM
| Last Modified: Jun 14, 2024 5:16 AM
(791 views)
| Posted in reply to message from txnelson 06-13-2024
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.
Using JSL, it would be:
Names Default To Here( 1 ); Open( "$SAMPLE_DATA/Big Class.jmp" ); Oneway( Y( :height ), X( :sex ), Means( 1 ), Mean Diamonds( 1 ), Local Data Filter( Title( "Choose age(s) to display" ), Add Filter( columns( :age ), Display( :age, N Items( 6 ) ) ) ) );