|
This page last changed on 11.03.2014 by jkox.
TROMSO_RH_N_FTP
Name: RH_N_FTP
Short description: Number of full term pregnancies
Type: Integer
Description and values: Number of full term pregnancies a woman has had (continuous variable).
- Code "0" if the woman has never been full-term pregnant.
- Code 9999 for missing/insufficient data
Local variable explanation:
CHILDREN_T4 : How many children have you given birth to?
SAS code:
RH_N_FTP=CHILDREN_T4;
If CHILDREN_T4=0 then RH_N_FTP=0;
else RH_N_FTP=9999;
NSWEDEN_RH_N_FTP
RH_N_FTP=V6;
IF V6=. THEN RH_N_FTP=9999;
V6 is the ma_v6 in the variable list
MORGAM_RH_N_FTP
The RH_N_FTP variable is defined using the MORGAM variables PARITY and PREGNA, and the CHANCES variable SEX.
PARITY
How many live births have you given?
88 = irrelevant (SEX=1. Optionally also if PREGNA = 2)
99 = insufficient data
PREGNA
Have you ever been pregnant?
1 = yes
2 = no
8 = irrelevant (SEX = 1)
9 = insufficient data
If SEX = 2 (FEMALE), the following rule is used:
| PARITY |
PREGNA=1 |
PREGNA=2 |
PREGNA=8 |
PREGNA=9 |
| 0 |
RH_N_FTP=0 |
RH_N_FTP=0 |
RH_N_FTP=0 |
RH_N_FTP=0 |
| 0<PARITY<88 |
RH_N_FTP=PARITY |
RH_N_FTP=PARITY |
RH_N_FTP=PARITY |
RH_N_FTP=PARITY |
| 88 |
RH_N_FTP=9999 |
RH_N_FTP=0 |
RH_N_FTP=9999 |
RH_N_FTP=9999 |
| 99 |
RH_N_FTP=9999 |
RH_N_FTP=0 |
RH_N_FTP=9999 |
RH_N_FTP=9999 |
If SEX = 1 (MALE), 9999 is coded for RH_N_FTP.
ESTHER_RH_N_FTP
RH_N_FTP = 0;
if F21PRG15 = 15 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG16 = 16 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG17 = 17 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG18 = 18 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG19 = 19 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG20 = 20 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG21 = 21 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG22 = 22 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG23 = 23 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG24 = 24 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG25 = 25 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG26 = 26 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG27 = 27 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG28 = 28 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG29 = 29 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG30 = 30 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG31 = 31 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG32 = 32 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG33 = 33 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG34 = 34 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG35 = 35 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG36 = 36 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG37 = 37 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG38 = 38 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG39 = 39 then RH_N_FTP = RH_N_FTP + 1;
if F21PRG40 = 40 then RH_N_FTP = RH_N_FTP + 1;
if KD37AZTO = . then KD37AZTO = 0;
if KD37AZSO = . then KD37AZSO = 0;
if P02SEX = 1 and ((KD37AZTO + KD37AZSO) > RH_N_FTP) then RH_N_FTP = (KD37AZTO + KD37AZSO);
if sex=1 then RH_N_FTP =9999;
Source of F21PRG15 - F21PRG40, P02SEX, KD37AZTO, and KD37AZSO is participant's questionnaire at baseline
EPIC_RH_N_FTP
The EPIC variable N_FTP was used for the production of RH_N_FTP according to the following definition and rule.
EPIC var definition(s): N_FTP: Number of full term pregnancies
Coding rule:
Variable RH_N_FTP shows number of full term pregnancies and is identical to N_FTP.
Coding rule in STATA:
-gen RH_N_FTP = N_FTP
-replace RH_N_FTP=9999 if RH_N_FTP==.
|