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

AIC for self created nonlinear model

Hi,

How can I get AIC values for a self created nonlinear model (by column formula)?

I choose Analyse > Specialized modeling > Nonlinear , I put my formula column as X, the response column as Y, I get convergence. But how can I get AIC values to compare the model with a linear model? Or are there other ways to compare my formula model with a linear one?

Thanks in advance for your help!

1 ACCEPTED SOLUTION

Accepted Solutions

Re: AIC for self created nonlinear model

You can calculate the AICc for the continuous response using this formula:

 

AICc.png

 

Where n = sample size, p = number of model parameters, and SSE for the fitted model. The log() is the natural logarithm function.

View solution in original post

2 REPLIES 2

Re: AIC for self created nonlinear model

You can calculate the AICc for the continuous response using this formula:

 

AICc.png

 

Where n = sample size, p = number of model parameters, and SSE for the fitted model. The log() is the natural logarithm function.

frietje
Level I

Re: AIC for self created nonlinear model

Thanks!

Recommended Articles