- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
tabulate function wrap text
Hi all,
Is there a way to wrap text/ Fixed width in Tabulate data table. Now I have so many parameters that table becomes long that it's shrinking the size of the graphs(which is of fixed width)?
Thank you so much.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: tabulate function wrap text
There is not a build in selection to wrap or display the charts on the horizontal. However, as you know, the components of JMP platform's output can be manipulated. Below is the manipulated output display, and the script that creates the new output
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.jmp" );
tab = dt << Tabulate(
invisible,
Show Chart( 1 ),
Show Control Panel( 0 ),
Add Table(
Column Table( Analysis Columns( :NPN1 ) ),
Row Table( Grouping Columns( :lot_id, :wafer ) )
)
);
nw = New Window( "test",
H List Box( Report( tab )[tabulatebox( 1 )], Report( tab )[tabulatebox( 2 )] )
);
Jim