cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
tobben24
Level I

Create horizontal border to separate y-grouped plots

Hi,

 

I want to create a horizontal border to seperate my y-grouped plots. I have attached a screen shot show with black crosses where I want to create the border.

 

Untitled.png

2 REPLIES 2
txnelson
Super User

Re: Create horizontal border to seperate y-grouped plots

Here is an example script that adds an annotation line to the graph.  I simply used the annotation tools to draw the line, and then captured the script.

Names default to here(1);

dt=open("$SAMPLE_DATA\big class.jmp");

Graph Builder(
	Size( 587, 495 ),
	Variables( X( :weight ), Y( :height ), Group Y( :sex ) ),
	Elements( Points( X, Y, Legend( 7 ) ) ),
	SendToReport(
		Dispatch( {}, "height", ScaleBox, {Min( 56.9527534300518 )} ),
		Dispatch(
			{},
			"",
			GraphBuilderContainerBox,
			Add Line Annotation(
				Line( {52, 251}, {550, 249} ),
				Color( "Black" ),
				Thick( 1 )
			)
		)
	)
);
Jim

Re: Create horizontal border to seperate y-grouped plots

Reference line also will work.

Names default to here(1);

 

dt=open("$SAMPLE_DATA\big class.jmp");

 

nMin = col min(dt:height)-col min(dt:height)*0.1;

 

Graph Builder(

       Size( 787, 633 ),

       Variables( X( :weight ), Y( :height ), Group Y( :sex ) ),

       Elements( Points( X, Y, Legend( 7 ) ) ),

       SendToReport(

              Dispatch(

                     {},

                     "height",

                     ScaleBox,

                     {Min( nMin ), Add Ref Line( nMin, "Solid", "Black", "", 2 )}

              )

       )

);