cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

tabulate function wrap text

vishwasanj
Level V

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