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

Bivariate Fit - how to delete line fitting frame box

In jsl, how do I delete the box containing all of the "Fit Each Value" line items. I want to keep the plot with the fitted lines, but delete box containing all of the "Fit Each Value" lines which can be >100 items long and makes scrolling through many plots painful.

RonSwanson_0-1581112180652.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Bivariate Fit - how to delete line fitting frame box

You simply have to delete the object from the Display Tree;  Below is a simple example.

names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
biv = dt << Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Line( {Line Color( "Medium Dark Red" )} )
);

report(biv)[PictureBox(2)]<<delete;
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Bivariate Fit - how to delete line fitting frame box

You simply have to delete the object from the Display Tree;  Below is a simple example.

names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");
biv = dt << Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Line( {Line Color( "Medium Dark Red" )} )
);

report(biv)[PictureBox(2)]<<delete;
Jim