- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Extract table variable in graph builder
Hello,
I have a JMP table with multiple table variables. For instance, this table is the result of a data extraction between my start time "January 2023" and my end time "March 2023". I saved as table variables this start and time. I would like from this table to go on Graph builder and find somewhere the information about my table variables and add it as hover for instance. I know this is possible by jsl, but is it possible by just click-buttons on Graph builder ?
JMP Version: 16.0
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Boston Housing.jmp" );
dt << New Table Variable( "Start time", "January 2023");
dt << New Table Variable( "End time", "March 2023");
names = dt << Get Table Variable Names;
Show( names );
Thanks in advance
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Extract table variable in graph builder
You can access table variables just like columns, so in the hover label editor you can just reference that variable.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Boston Housing.jmp" );
dt << New Table Variable( "Start time", "January 2023");
dt << New Table Variable( "End time", "March 2023");
In the hover label editor:
Try adding a textlet with with in the HTML Markup:
The start time is '{:Start time}'
That would show the table variable's value when hovering over a point:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Extract table variable in graph builder
You can access table variables just like columns, so in the hover label editor you can just reference that variable.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Boston Housing.jmp" );
dt << New Table Variable( "Start time", "January 2023");
dt << New Table Variable( "End time", "March 2023");
In the hover label editor:
Try adding a textlet with with in the HTML Markup:
The start time is '{:Start time}'
That would show the table variable's value when hovering over a point:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Extract table variable in graph builder
Thank your for your answer, this is exactly what I looked for !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content