cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
vishwasanj
Level V

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
txnelson
Super User

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

tabulate.PNG

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