cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
LogitPorcupine1
Level III

can i move the 5 number summary away from the top of my graphs?

hello,

 

i am making graphs with box plots and i want to display the 5 number summary on the graph.  the problem is that the 5 number summary always displays at the top of the graph, and it sometimes obscures the box plots,

 

is there a way to change the location of the 5 number summary so it doesn't interfere with the graph???

 

LogitPorcupine1_0-1652982325312.png

 

4 REPLIES 4
ron_horne
Super User (Alumni)

Re: can i move the 5 number summary away from the top of my graphs?

Hi @LogitPorcupine1 ,

The fastest way of doing so would be to modify the scale of the Y axis to make room for both.

otherwise, someone else may have a fundamental solution.

 

 

LogitPorcupine1
Level III

Re: can i move the 5 number summary away from the top of my graphs?

thanks you,

 

but yeah, i was hoping for a way where i didn't have to expand the y-scale

ron_horne
Super User (Alumni)

Re: can i move the 5 number summary away from the top of my graphs?

@LogitPorcupine1 

if there is no way to access the 5 numbers in the graph and modify them i  think it would be better to run somthing like this:

 



Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Box plots - Height by Age",
	V List Box(
		Graph Builder(
			Size( 567, 640 ),
			Show Control Panel( 0 ),
			Fit to Window( "Off" ),
			Variables( X( :age ), Y( :height ) ),
			Elements( Box Plot( X, Y, Legend( 4 ) ) )
		),
		Tabulate(
			Show Control Panel( 0 ),
			Add Table(
				Column Table( Grouping Columns( :age ), Analysis Columns( :height ) ),
				Row Table( Statistics( Max, Quantiles( 75 ), Median, Quantiles( 25 ), Min ) )
			)
		)
	)
);

you can modify it to fit your needs and save it as an add in for future use.

 

 

 

 

I didnt manage to access the 5 numbers from the properties if anyone knows how this may be the key to the solution

ron_horne_0-1652985549738.png

 

 

 

 

 

 

Joseph_Reese
Level IV

Re: can i move the 5 number summary away from the top of my graphs?

In the past I have added 5 separate Caption Box elements to the graph, each listing one component of the 5 number summary. Those Caption Box elements give you a bit more control on where you want the information displayed. Always a good idea to make an addition to the JMP Wish List if there is functionality you are interested in. Thanks!

Recommended Articles