cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • 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.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
cerdmh
Level I

Variability chart - Remove ref line

Hi

 

I'm trying to remove ref line from variability chart.

In previous JMP version the below script worked.

can any know why not working on JMP16.

biv = Bivariate( Y( :weight ), X( :height ), );
rbiv = biv << report;
axisbox = rbiv[axis box( 1 )];
axisbox << Add Ref Line( 90, "Dashed", blue ); //Works
axisbox << Remove Ref Line( 90 ); //Don't work

 

Thanks

4 REPLIES 4
txnelson
Super User

Re: Variability chart - Remove ref line

I have replicated the issue you specified.  Please report the issue to 

     [email protected]

Jim

Re: Variability chart - Remove ref line

This is a known bug. It was previously reported to Technical Support. They entered it into our tracking system for a fix. The fix is applied to a maintenance release. If you cannot wait for the release, there is a work-aournd:

 

axisbox << Add Ref Line( 90, "Solid", "Blue", "", 0 ); // replace with zero width instead of remove
cerdmh
Level I

Re: Variability chart - Remove ref line

Thanks for your support

statman
Super User

Re: Variability chart - Remove ref line

Thanks for bringing this up.  It was "bugging" me also...I kept reverting to JMP 15 for these charts.

"All models are wrong, some are useful" G.E.P. Box

Recommended Articles