Codes and Frequencies
Can't find the category you are looking for? Try the Detailed codes
Explore how IPUMS created this variable
Most IPUMS data transformations are performed using variable harmonization tables that specify how each value in the source data is recoded. Some variables also require programming logic in addition to the harmonization table. The harmonization documents for this variable are:
- Harmonization table
- Supplemental programming
- Instructions for interpreting harmonization documents
class Chdeadmo : public Editor {
public:
Chdeadmo(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
long a = getRecoded();
if (dataSet == dataset_id::ke1989a) {
if (KE1989A_0426() == 1)
a = 0;
}
if (dataSet == dataset_id::br2010a) {
if (BR2010A_0503() == 99 && BR2010A_0501() == 1)
a = 0;
}
if (dataSet == dataset_id::ht2003a) {
if (HT2003A_0450() == 99 && HT2003A_0448() == 1)
a = 0;
}
if (dataSet == dataset_id::za2011a) {
if (ZA2011A_0471() == 99 && ZA2011A_0469() == 1)
a = 0;
}
if (dataSet == dataset_id::za2016a) {
if (ZA2016A_0488() == 99 && ZA2016A_0486() == 1)
a = 0;
if (ZA2016A_0488() == 99 && (ZA2016A_0486() == 3 || ZA2016A_0486() == 8))
a = 98;
}
setData(a);
}
};
Description
CHDEADMO indicates whether the woman's last child had died and, if so, the month of the death. Respondents were to exclude still births from consideration. Also see CHDEADYR.
Comparability — Index
GENERAL |
Kenya |
Comparability — General
CHDEADMO does not pose any comparability issues aside from differences in the universe.
Comparability — Kenya [top]
This census specified that if the last birth occurrence was a multiple birth, and if one of those children had died, this child was to be used as the basis for answering the question, even if the child was not actually the last born. If the last birth occurrence was a multiple birth, and if more than one of those children had died, the last born child was to be used to answer the question.
In 1989, the universe for this variable was females age 12+ who ever gave birth. In 2019, the universe for this variable was females age 12+ who gave birth within the last 5 years.
Universe
- Brazil 2010: Females age 10+ who ever gave birth
- Haiti 2003: Females age 13+ who ever gave birth
- Kenya 1989: Females age 12+ who ever gave birth
- Kenya 2019: Females age 12+ who gave birth within the last 5 years
- South Africa 2011: Females age 12 to 50 in private households who ever gave birth
- South Africa 2016: Female age 12 to 50 who ever gave birth
Availability
- Brazil: 2010
- Haiti: 2003
- Kenya: 1989, 2019
- South Africa: 2011, 2016

Loading...