Hello folks, I am trying to fit a logit model and after getting the plot of the two target variables that I am interested in, I feel it should be a quadratic model. Below is the plot based on the raw data.

However, when I add the quadratic term in the model, the coefficient associated with the quadratic term is not significant (but I feel it should be sig). Below is the model output. As you can see, read is sig but read2 (the quadratic term of read) is not sig. I am not sure what does this tell me. Should I keep adding cubic or 4th order quadratic to the model until all the polynomial terms are significant? Thanks.
However, when I add the quadratic term in the model, the coefficient associated with the quadratic term is not significant (but I feel it should be sig). Below is the model output. As you can see, read is sig but read2 (the quadratic term of read) is not sig. I am not sure what does this tell me. Should I keep adding cubic or 4th order quadratic to the model until all the polynomial terms are significant? Thanks.
Code:
. svy: logit IEP_THIRD KINDER_READ read2 (running logit on estimation sample) Survey: Logistic regression Number of strata = 42 Number of obs = 3386 Number of PSUs = 125 Population size = 2380657.3 Design df = 83 F( 2, 82) = 95.99 Prob > F = 0.0000 ------------------------------------------------------------------------------ | Linearized IEP_THIRD | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- KINDER_READ | -2.153642 .1580315 -13.63 0.000 -2.467961 -1.839324 read2 | -.174322 .267403 -0.65 0.516 -.7061758 .3575318 _cons | -1.24688 .1244377 -10.02 0.000 -1.494382 -.9993783 ------------------------------------------------------------------------------
Comment