cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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