This page last changed on 25.09.2014 by ttuv.

TROMSO_RH_EVER_FTP

Name: RH_EVER_FTP

Short description: Ever had a full term pregnancy 

Type: Integer

Description and values: Has the woman ever had a full term pregnancy?

  • 0=No
  • 1=Yes
  • 9=Missing/insufficient data. 

Local variable explanation:

*CHILDREN_T4 : *How many children have you given birth to?

SAS code:

If CHILDREN_T4 > 0 then RH_EVER_FTP=1;

else if CHILDREN_T4 EQ 0 then RH_EVER_FTP=0;

else RH_EVER_FTP=9;     


NSWEDEN_RH_EVER_FTP

if v6=. then RH_EVER_FTP=9;

if v6=0 then RH_EVER_FTP=0;

IF V6=>1 THEN RH_EVER_FTP=1;

v6 is the ma_V6 in the variable list


ESTHER_RH_EVER_FTP

if RH_A_1FTP ne 9999 then RH_EVER_FTP = 1;
else RH_EVER_FTP = 0;
if sex = 1 then RH_EVER_FTP = 9;

Variable RH_A_1FTP is a CHANCES variable.


EPIC_RH_EVER_FTP

The EPIC variable FTP was used for the production of RH_EVER_FTP according to the following definition and rule.

EPIC var definition(s):
FTP: EPIC elderly variable showing full term pregnancy (1=yes, 0=no)

Coding rule:
Variable RH_EVER_FTP shows full term pregnancy and is identical to FTP.

Coding rule in STATA:
-gen RH_EVER_FTP FTP

-replace RH_EVER_FTP = 9 if RH_EVER_FTP==.


Document generated by Confluence on 26.02.2015 17:05