cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
hogi
Level XI

Hierarchical X labels

For nominal values on the X axis, hierarchically stacked, is there a possibility to shift the axis label to the left?

hogi_0-1686731510513.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XI

Re: Hierarchical X labels

Actually, I just found this:

hogi_0-1695396264917.png

Open( "$SAMPLE_DATA/Design Experiment/Wine Data.jmp" );
Graph Builder(
	Size( 720, 866 ),
	Variables(
		X( :"De-Stem"n ),
		X( :Yeast, Position( 1 ) ),
		X( :Temperature, Position( 1 ) ),
		X( :Press, Position( 1 ) ),
		Y( :Rating )
	),
	Elements( Points( X( 1 ), X( 2 ), X( 3 ), X( 4 ), Y, Legend( 16 ) ) ),
	SendToReport(
		Dispatch( {}, "De-Stem", ScaleBox,
			{Label Row( 1, Row Title Side( "Start" ) ),
			Label Row( 2, Row Title Side( "Start" ) ),
			Label Row( 3, Row Title Side( "Start" ) ),
			Label Row( 4, Row Title Side( "Start" ) )}
		)
	)
)

 

View solution in original post

4 REPLIES 4
hogi
Level XI

Re: Hierarchical X labels

or is it the opposite order ...

txnelson
Super User

Re: Hierarchical X labels

I am not aware of the ability to move the axis label to the left corner of the chart.

 

See solution

Jim
hogi
Level XI

Re: Hierarchical X labels

Hm, the hierarchical structures on the axes are soooo useful

- but the user always has to apply some postprocessing to make the plots ready for publications and management meetings.

 

with some small changes, one could directly use the GraphBuilder Plot without the need for postprocessing ...

Here is the wish: hierarchical axis labels - optimize the plot 

 

 

hogi
Level XI

Re: Hierarchical X labels

Actually, I just found this:

hogi_0-1695396264917.png

Open( "$SAMPLE_DATA/Design Experiment/Wine Data.jmp" );
Graph Builder(
	Size( 720, 866 ),
	Variables(
		X( :"De-Stem"n ),
		X( :Yeast, Position( 1 ) ),
		X( :Temperature, Position( 1 ) ),
		X( :Press, Position( 1 ) ),
		Y( :Rating )
	),
	Elements( Points( X( 1 ), X( 2 ), X( 3 ), X( 4 ), Y, Legend( 16 ) ) ),
	SendToReport(
		Dispatch( {}, "De-Stem", ScaleBox,
			{Label Row( 1, Row Title Side( "Start" ) ),
			Label Row( 2, Row Title Side( "Start" ) ),
			Label Row( 3, Row Title Side( "Start" ) ),
			Label Row( 4, Row Title Side( "Start" ) )}
		)
	)
)