nchild
variable:group
| Variable | Graph | Type | N | Descriptives | Label |
|---|---|---|---|---|---|
|
[+]
nchild @ch45.dta |
|
category (float) |
9 (3) |
"2", "3", "4" |
| file | # | command |
|---|---|---|
| ch4.1.do: | 6 [+] | g nchild = int(12*uniform())+1 |
| : | 8 [+] | qui g child`i' = cond(nchild >= `i',int(30 * uniform()) + 1, .) |
| ch4.4.do: | 31 [+] | drop nadult nchild sibs nboys nbros older oldestchild oldestsibling |
| : | 34 [+] | by fam: egen nchild = total(age <= 17) if age <= 17 |
| : | 35 [+] | generate sibs = nchild - 1 |