The DHS Program User Forum
Discussions regarding The DHS Program data and results
Home » Data » General Data Questions » Childlessness
Childlessness [message #30488] Mon, 09 December 2024 01:25 Go to next message
crfparcon1 is currently offline  crfparcon1
Messages: 1
Registered: December 2024
Member
I would like to look into childlessness in the Philippines. May i know if there is stata commands in extracting subset of women who are examined for childlessness based on the definition in this report (https://dhsprogram.com/pubs/pdf/CR50/CR50.pdf). Thanks!
Re: Childlessness [message #30492 is a reply to message #30488] Mon, 09 December 2024 08:08 Go to previous message
Bridgette-DHS is currently offline  Bridgette-DHS
Messages: 3223
Registered: February 2013
Senior Member
Following is a response from Senior DHS staff member, Tom Pullum:

The following lines in Stata will construct such a variable. Category 4 matches with "childless" as in the report. Categories 1-3 provide a useful breakdown of the other women.

The definition in Comparative Report #50 is not the only possible definition. You could consider alternatives, depending on what you want to do. It can be helpful to distinguish, so far as possible, between women who are childless by choice and those who are childless but would prefer to have children, just as it is useful to distinguish between women who have had children and wanted children, and women who would have preferred to be childless.

use "...PHIR82FL.DTA", clear

gen     ch_status=1 if v201>0
replace ch_status=2 if v201==0 & v512==.
replace ch_status=3 if v201==0 & v512<=4
replace ch_status=4 if v201==0 & v512>4 & v512<.

label variable ch_status "Childless status"
label define ch_status 1 "Has had children" 2 "No children, never in union" 3 "No children, <5 yrs in union" 4 "Childless"
label values ch_status ch_status

tab ch_status
Previous Topic: Certain variables/questions not found on the questionnaire
Goto Forum:
  


Current Time: Wed Jan 15 08:17:53 Coordinated Universal Time 2025