1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
egen mself=mean(self), by(id)
egen mpov=mean(pov), by(id)
gen dself=self-mself
gen dpov=pov-mpov
*原始固定效应方法
eststo fe: xtreg anti self pov i.time, fe
*混合方法
eststo hybrid: xtreg anti dself dpov mself mpov black hispanic childage married gender momage momwork i.time
eststo hybrid2: xtreg anti dself dpov mself mpov i.time
esttab hybrid hybrid2,nogap se
--------------------------------------------
(1) (2)
hybrid hybrid2
--------------------------------------------
dself -0.0552*** -0.0552***
(0.0105) (0.0105)
dpov 0.112 0.112
(0.0934) (0.0934)
mself -0.0900*** -0.0748***
(0.0220) (0.0223)
mpov 0.616*** 0.684***
(0.157) (0.138)
black 0.111
(0.132)
hispanic -0.280*
(0.139)
childage 0.0857
(0.0908)
married -0.128
(0.129)
gender -0.508***
(0.107)
momage -0.0113
(0.0254)
momwork 0.164
(0.119)
2.times 0.0444 0.0444
(0.0586) (0.0586)
3.times 0.211*** 0.211***
(0.0588) (0.0588)
_cons 2.908* 2.849***
(1.160) (0.463)
--------------------------------------------
N 1743 1743
--------------------------------------------
Standard errors in parentheses
* p<0.05, ** p<0.01, *** p<0.001
corr dself black
| dself black
-------------+------------------
dself | 1.0000
black | -0.0000 1.0000
estimate restore hybrid
test (dself=mself) (dpov=mpov)
( 1) dself - mself = 0
( 2) dpov - mpov = 0
chi2( 2) = 9.87
Prob > chi2 = 0.0072
*随机截距模型
eststo mix: xtmixed anti dself dpov mself mpov black hispanic childage married gender momage momwork i.time || id: ds
esttab fe hybrid hybrid2 mix,nogap se mtitle(fe hybrid hybrid2 mix)
----------------------------------------------------------------------------
(1) (2) (3) (4)
fe hybrid hybrid2 mix
----------------------------------------------------------------------------
main
self -0.0552***
(0.0105)
pov 0.112
(0.0934)
2.times 0.0444 0.0444 0.0444 0.0403
(0.0586) (0.0586) (0.0586) (0.0584)
3.times 0.211*** 0.211*** 0.211*** 0.204***
(0.0588) (0.0588) (0.0588) (0.0586)
dself -0.0552*** -0.0552*** -0.0552***
(0.0105) (0.0105) (0.0112)
dpov 0.112 0.112 0.112
(0.0934) (0.0934) (0.0933)
mself -0.0900*** -0.0748*** -0.0900***
(0.0220) (0.0223) (0.0218)
mpov 0.616*** 0.684*** 0.616***
(0.157) (0.138) (0.155)
black 0.111 0.111
(0.132) (0.131)
hispanic -0.280* -0.280*
(0.139) (0.138)
childage 0.0857 0.0857
(0.0908) (0.0900)
married -0.128 -0.128
(0.129) (0.127)
gender -0.508*** -0.508***
(0.107) (0.106)
momage -0.0113 -0.0113
(0.0254) (0.0252)
momwork 0.164 0.164
(0.119) (0.118)
_cons 2.637*** 2.908* 2.849*** 2.912*
(0.217) (1.160) (0.463) (1.150)
----------------------------------------------------------------------------
lns1_1_1
_cons -2.673***
(0.356)
----------------------------------------------------------------------------
lns1_1_2
_cons 0.122**
(0.0371)
----------------------------------------------------------------------------
lnsig_e
_cons -0.0236
(0.0241)
----------------------------------------------------------------------------
N 1743 1743 1743 1743
----------------------------------------------------------------------------
Standard errors in parentheses
* p<0.05, ** p<0.01, *** p<0.001
|