Solved – Hypothesis Tests for Non-linear least squares coefficients

hypothesis testingnonlinear regressionr

I have a set of results that take the following form:

σ       Standard error
0,06    0,50
0,91    >10
0,04    0,11
0,84    0,56
0,44    0,10
0,03    0,09
0,30    >10
0,19    0,07
0,04    1,15

Where σ is a coefficient in a non-linear model, which I've estimated directly using an iterative algorithm (BFGS).

If I want to test a hypothesis of the type σ=0, which test would be appropriate? We haven't covered non-linear optimization methods in my classes, and I'm really at loss.

Best Answer

Hypothesis testing and confidence intervals on non-linear regression models are based on asymptotic theory. To construct a test, you may extract the diagonal element of the covariance matrix that corresponds to your estimate and as usual form the t-ratio. You can then use the critical values of the standard normal distribution to reach a decision.

One warning is in order though. As these tests are based on large sample theory, it's not prudent to pay much attention to them when your sample is quite small. There is no clear guideline as to "how large is sufficiently large" but personally if it's less than 50-60 observations, I would be very suspicious.

Hope this helps.

Related Question