cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
tylerram93
Level III

Set Y-Intercept in Script

Hey again,

 

Trying to have my plot have the "Fit Line" go through 0.

 

I can't find it in the online documentation.

 

Cheers,


Tyler

3 REPLIES 3

Re: Set Y-Intercept in Script

You are in the right place (Fit Y by X -> Bivariate) but don't use Fit Line command. Use Fit Special. The dialog box will contain a control so that you can constrain the y-intercept = 0.

tylerram93
Level III

Re: Set Y-Intercept in Script

Thank you for your promt answer, I guess I should have been more explicit, sorry.

 

I am scripting a Bivariate Analysis for a large numner of chips and reticles and so need to set it to zero in the code:

 

E.g.,

 

BivAnalysis = Bivariate(

Y ( Eval(yparam)),

X( Eval(xparam)),

Fitline ( {Line Color()}),

);

 

Thanks for all the help!

Jeff_Perkinson
Community Manager Community Manager

Re: Set Y-Intercept in Script

There are two ways to figure this out.

 

1) Use Help->Scripting Index to look at the Bivariate object where you'll see all the messages it can take, including Fit Special.

 

JMPScreenSnapz113.png

 

2) Do it once interactively and then look at the script that JMP gives you to reproduce it.

 

-Jeff