I have run a dual intercept mixed model as such:

Code:
mixed relsat i.husband c.Htime i.wife c.Wtime , nocons || ///
CSID: husband wife Htime Wtime , nocons var ml
Data is setup in a "checkerboard" as it needs to be for a dual intercept model:

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
CSID relsat husband Htime wife Wtime
10056                46 0 0 1 1
10056                50 1 1 0 0
10056                46 0 0 1 2
10056                50 1 2 0 0
10056                50 0 0 1 3
10056                46 1 3 0 0
10056                43 0 0 1 5
10056                50 1 5 0 0
10056                27 0 0 1 6
10056                48 1 6 0 0
10056                41 0 0 1 7
10056                50 1 7 0 0
10060                46 0 0 1 1
10060                47 1 1 0 0
10060                15 0 0 1 2
10060                35 1 2 0 0
10060                46 0 0 1 3
10060                37 1 3 0 0
10060                 . 0 0 1 5
10060                 . 1 5 0 0
10060                 . 0 0 1 6
10060                 . 1 6 0 0
10060                 . 0 0 1 7
10060                 . 1 7 0 0
10073                44 0 0 1 1
10073                48 1 1 0 0
10073                52 0 0 1 2
10073                50 1 2 0 0
10073                52 0 0 1 3
10073                49 1 3 0 0
10073                52 0 0 1 5
10073                47 1 5 0 0
10073                52 0 0 1 6
10073                51 1 6 0 0
10073                52 0 0 1 7
10073                48 1 7 0 0
end
I would now like to be able to extract the intercept and slope estimate for each individual (i.e. all husbands and all wives) into a separate variable that I can use for other analyses. Is this possible?