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
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

Recommended Articles