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
jmessamer
Level I

Why is the Save Columns > Indiv Confidence Interval Formula option not available in the Fit Least Squares report?

I am analyzing data with the fit least squares platform using the REML method and I do not see the option for Save Columns > Individual Confidence Interval Formula. The option to save the individual confidence intervals (without the formula) is available, but I need the formula. Is there a settings option that I need to change to enable this save option?

tempsnip.png

1 REPLY 1
gzmorgan0
Super User (Alumni)

Re: Why is the Save Columns > Indiv Confidence Interval Formula option not available in the Fit Least Squares report?

@jmessamer ,

 

This can be done with a script.  Below are two examples. You should post which version of JMP you aer using.

 

REML example

dt = Open( "$SAMPLE_DATA/Animals.jmp" );

obj = Fit Model(
	Y( :miles ),
	Effects( :species, :subject[:species] & Random, :season, :species * :season ),
	Personality( Standard Least Squares ),
	Method( REML ),
	Convergence Limit( 0.0001 ),
	Run Model
);

F = obj << Get Indiv Confid Limit Formula; //creates a script
F;  //executes the script.

Least Squares Example

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Drug.jmp" );
obj = Fit Model(
	Y( :y ),
	Effects( :Drug, :x ),
	Personality( Standard Least Squares ),
	Emphasis( Minimal Report ),
	Run
);
F = obj << Get  Indiv Confid Limit Formula; //see log a script is created
F;  // execute this script to get the formulas

Recommended Articles