Knowledge of contraceptive methods-Codebook [message #5639] |
Fri, 19 June 2015 11:13 |
layane
Messages: 1 Registered: June 2015
|
Member |
|
|
Hello,
I am using Buskina Faso's 2010 female survey. The dataset has 20 binary variables (v304_01 to v304_20), each labeled as "knows method". I wasn't able to match the methods listed on the survey questionnaire to these variables in the dataset.
The questionnaire-in french- lists only 13 possibles methods rather than 20, and the question is number 301 rather than 304.
Does anyone know how to decode these variables and figure out the methods they refer to?
Thank you in advance!
|
|
|
Re: Knowledge of contraceptive methods-Codebook [message #6709 is a reply to message #5639] |
Wed, 01 July 2015 13:58 |
Liz-DHS
Messages: 1516 Registered: February 2013
|
Senior Member |
|
|
Dear User,
Here is some partial CSPro code of how these methods were recoded from the raw to the recode. The numbers on the left are for the raw. The numbers on the right are from the recode. If you have additional questions, please feel free to post again.
Box Q304N => V312; { !! }
notappl => 0;
6 => 1; { Pill }
3 => 2; { IUD }
4 => 3; { Injection }
9 => 4; { Diaphragm }
7 => 5; { Condom }
1 => 6; { Female sterilization }
2 => 7; { male sterilization }
12 => 8; { Periodic Abstinence }
13 => 9; { Withdrawal }
96 => 10; { Other, traditional }
5 => 11; { Implants }
11 => 13; { Lactational amenorrhrea method }
8 => 14; { Female condom }
10 => 15; { Foam and jelly }
95 => 17; { other modern method }
14 => 18; { Collier }
=> Q304N; { Special codes }
endbox;
|
|
|