In my following regression I'm getting this result. Though, I can sperately run the first stage regression , and check if this is a weak instrument or not. But, running after this regression I can't see any p-value or t statisitics in my first stage regression. Is this normal looking setup or I'm doing something wrong ?
This is the command I'm using for the following regression result:
This is the command I'm using for the following regression result:
Code:
ivregress 2sls DEPVAR (endogenous=IV) male ismarried wasmarried age age2 age3 age4 black asian hispanic lths hsdegree somecollege , cluster(county) first
Code:
First-stage regressions
-----------------------
Warning: Variance matrix is nonsymmetric or highly singular.
Number of obs = 1,221,477
No. of clusters = 413
F(0, 1221462) = .
Prob > F = .
R-squared = 0.0287
Adj R-squared = 0.0287
Root MSE = 0.1198
-----------------------------------------------------------------------------------
| Robust
endogenous | Coefficient std. err. t P>|t| [95% conf. interval]
------------------+----------------------------------------------------------------
male | -.0021216 . . . . .
ismarried | -.006381 . . . . .
wasmarried | -.0050979 . . . . .
age | .0078539 . . . . .
age2 | -.0002958 . . . . .
age3 | 4.79e-06 . . . . .
age4 | -2.75e-08 . . . . .
black | .0016079 . . . . .
asian | .0061996 . . . . .
hispanic | .0180494 . . . . .
lths | -.0098576 . . . . .
hsdegree | -.0048408 . . . . .
somecollege | -.0021989 . . . . .
|
INSTRUMENT VARIABLE | -3.45e-06 . . . . .
|
_cons | -.0298293 . . . . .
-----------------------------------------------------------------------------------
Instrumental variables 2SLS regression Number of obs = 1,221,477
Wald chi2(14) = 2078.25
Prob > chi2 = 0.0000
R-squared = 0.0011
Root MSE = .10483
(Std. err. adjusted for 413 clusters in the county)
------------------------------------------------------------------------------
| Robust
DEPVAR | Coefficient std. err. z P>|z| [95% conf. interval]
-------------+----------------------------------------------------------------
endogenous | .0287666 .0115837 2.48 0.013 .0060629 .0514703
male | -.0053925 .0002373 -22.73 0.000 -.0058575 -.0049274
ismarried | .0011665 .0002201 5.30 0.000 .0007351 .0015979
wasmarried | .0023514 .0003723 6.32 0.000 .0016216 .0030811
age | -.0012788 .0006861 -1.86 0.062 -.0026234 .0000658
age2 | .000064 .0000281 2.27 0.023 8.84e-06 .0001192
age3 | -1.12e-06 4.92e-07 -2.28 0.022 -2.09e-06 -1.59e-07
age4 | 7.03e-09 3.12e-09 2.26 0.024 9.21e-10 1.31e-08
black | -.0001923 .0002559 -0.75 0.452 -.0006938 .0003092
asian | -.0035667 .0010158 -3.51 0.000 -.0055577 -.0015758
hispanic | -.0048981 .0004398 -11.14 0.000 -.0057601 -.0040362
lths | .0028831 .0008705 3.31 0.001 .001177 .0045893
hsdegree | .002897 .0003899 7.43 0.000 .0021328 .0036612
somecollege | .003127 .0003549 8.81 0.000 .0024314 .0038226
_cons | .0151984 .0060315 2.52 0.012 .0033768 .02702
Comment