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

Hierarchical X labels

hogi
Level XII

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 XII


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

5 REPLIES 5
hogi
Level XII


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 XII


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 XII


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" ) )}
		)
	)
)

 

hogi
Level XII


Re: Hierarchical X labels

added it to Graph Builder Toolbar :

hogi_0-1721766245583.png