Dear Statalisters,
Unfortunately after running my regression in Stata this pops up:
When I try the same regression with a specification of -iterate(5)-, these are my results:
From these numbers I can see that the variable inhabitants is extremely low, but excluding this variable does not solve the problem. Also another possible solution by just running the regression with one variable gives the iteration problem for every single variable. However, by chance I found that dropping 20.000 of the 77.000 observations solves the problem. I know that this is the way to perform a valid regression, but maybe it helps finding a solution for the problem.
Thanks in advance.
Berend
Edit: forgot something to mention.
Unfortunately after running my regression in Stata this pops up:
Code:
mixed price in_out inhabitants density crimerate travel size employment income greenspace socialhousing || neighborhood: Iteration 0: log likelihood = -968156.44 Iteration 1: log likelihood = -968156.44 Iteration 2: log likelihood = -968156.44 (backed up) Iteration 3: log likelihood = -968156.44 (backed up) Iteration 4: log likelihood = -968156.44 (backed up) Iteration 5: log likelihood = -968156.44 (backed up) Iteration 6: log likelihood = -968156.44 (backed up) Iteration 7: log likelihood = -968156.44 (backed up)
Code:
mixed price in_out inhabitants density crimerate travel size employment income greenspace socialhousing || neighborhood:, iterate(5) ------------------------------------------------------------------------------- price | Coef. Std. Err. z P>|z| [95% Conf. Interval] --------------+---------------------------------------------------------------- in_out | 6585.13 6838.532 0.96 0.336 -6818.147 19988.41 inhabitants | -.0231968 .0564559 -0.41 0.681 -.1338484 .0874548 density | 785.4646 275.0119 2.86 0.004 246.4511 1324.478 crimerate | -29.97358 62.35665 -0.48 0.631 -152.1904 92.24321 travel | -6707.326 2810.795 -2.39 0.017 -12216.38 -1198.268 size | 7876.235 23151.28 0.34 0.734 -37499.43 53251.9 employment | -1526.386 559.3436 -2.73 0.006 -2622.68 -430.0931 income | 8831.107 1172.088 7.53 0.000 6533.856 11128.36 greenspace | 838.0578 417.8564 2.01 0.045 19.07436 1657.041 socialhousing | -421.7408 457.5617 -0.92 0.357 -1318.545 475.0637 _cons | -40347.05 112098.6 -0.36 0.719 -260056.2 179362.1 -------------------------------------------------------------------------------
Thanks in advance.
Berend
Edit: forgot something to mention.
Comment