cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

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